sky_snapshot: fix the types of Dart snapshot buffer symbols (flutter/engine#2876)

Also pick up some needed fixes to FTL and Tonic
This commit is contained in:
Jason Simmons 2016-08-05 15:33:21 -07:00 committed by GitHub
parent b8111c902c
commit 4f80971f11
2 changed files with 4 additions and 4 deletions

4
DEPS
View File

@ -50,10 +50,10 @@ deps = {
# and not have to specific specific hashes.
'src/lib/ftl':
Var('fuchsia_git') + '/ftl' + '@' + 'e9ebb15d179fed9467e5fb3ce6fb807cc4ad9a8b',
Var('fuchsia_git') + '/ftl' + '@' + 'be8fe290130170e78cbd3cedbf2ba580c22ced43',
'src/lib/tonic':
Var('fuchsia_git') + '/tonic' + '@' + '325db6a9d6d32351e86843e5db0dfaad5f8651bf',
Var('fuchsia_git') + '/tonic' + '@' + '4c73592aceba378355e245b797017ff4c02a9248',
'src/third_party/gtest':
Var('fuchsia_git') + '/third_party/gtest' + '@' + 'c00f82917331efbbd27124b537e4ccc915a02b72',

View File

@ -22,8 +22,8 @@
#include "lib/tonic/file_loader/file_loader.h"
extern "C" {
extern const uint8_t* kDartVmIsolateSnapshotBuffer;
extern const uint8_t* kDartIsolateSnapshotBuffer;
extern const uint8_t kDartVmIsolateSnapshotBuffer[];
extern const uint8_t kDartIsolateSnapshotBuffer[];
}
namespace sky_snapshot {