Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 use_relative_paths = True | 1 use_relative_paths = True |
| 2 | 2 |
| 3 vars = { | 3 vars = { |
| 4 'chromium_git': 'https://chromium.googlesource.com', | 4 'chromium_git': 'https://chromium.googlesource.com', |
| 5 'pdfium_git': 'https://pdfium.googlesource.com', | 5 'pdfium_git': 'https://pdfium.googlesource.com', |
| 6 | 6 |
| 7 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98', | 7 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98', |
| 8 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', | 8 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
| 9 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', | 9 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', |
| 10 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', | 10 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', |
| 11 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', | 11 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', |
| 12 'pdfium_tests_revision': 'eb87214cb2088536e96aae517f3a281818fbf5b0', | 12 'pdfium_tests_revision': 'eb87214cb2088536e96aae517f3a281818fbf5b0', |
| 13 'skia_revision': '0a291c7b7eea1807bd58bdaa60c258fd0ebeb257', | 13 'skia_revision': '0a291c7b7eea1807bd58bdaa60c258fd0ebeb257', |
| 14 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', | 14 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', |
| 15 'v8_revision': '47bcec782b752ba411bd8bba6e390d1cc1c3226e', | 15 'v8_revision': '47bcec782b752ba411bd8bba6e390d1cc1c3226e', |
| 16 'clang_revision': '87058e09f9c547eb5d00cb8ca666c6aec203a117', | |
|
Tom Sepez
2016/04/18 18:51:46
nit alphabetize
Wei Li
2016/04/18 19:09:05
Done.
| |
| 16 | 17 |
| 17 } | 18 } |
| 18 | 19 |
| 19 deps = { | 20 deps = { |
| 20 "build/gyp": | 21 "build/gyp": |
| 21 Var('chromium_git') + "/external/gyp", | 22 Var('chromium_git') + "/external/gyp", |
| 22 | 23 |
| 23 "buildtools": | 24 "buildtools": |
| 24 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '), | 25 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '), |
| 25 | 26 |
| 26 "testing/corpus": | 27 "testing/corpus": |
| 27 Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), | 28 Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), |
| 28 | 29 |
| 29 "testing/gmock": | 30 "testing/gmock": |
| 30 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), | 31 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), |
| 31 | 32 |
| 32 "testing/gtest": | 33 "testing/gtest": |
| 33 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), | 34 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), |
| 34 | 35 |
| 35 "third_party/skia": | 36 "third_party/skia": |
| 36 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), | 37 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 37 | 38 |
| 38 "tools/clang": | 39 "tools/clang": |
|
Tom Sepez
2016/04/18 18:51:46
nit: here too
Wei Li
2016/04/18 19:09:05
This one is already in order.
| |
| 39 Var('chromium_git') + "/chromium/src/tools/clang", | 40 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), |
| 40 | 41 |
| 41 "v8": | 42 "v8": |
| 42 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), | 43 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), |
| 43 | 44 |
| 44 "v8/base/trace_event/common": | 45 "v8/base/trace_event/common": |
| 45 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'), | 46 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'), |
| 46 | 47 |
| 47 "v8/third_party/icu": | 48 "v8/third_party/icu": |
| 48 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), | 49 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), |
| 49 } | 50 } |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', | 138 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
| 138 ], | 139 ], |
| 139 }, | 140 }, |
| 140 { | 141 { |
| 141 # Pull clang if needed or requested via GYP_DEFINES. | 142 # Pull clang if needed or requested via GYP_DEFINES. |
| 142 'name': 'clang', | 143 'name': 'clang', |
| 143 'pattern': '.', | 144 'pattern': '.', |
| 144 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], | 145 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], |
| 145 }, | 146 }, |
| 146 ] | 147 ] |
| OLD | NEW |