Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 use_relative_paths = True | 1 use_relative_paths = True |
| 2 | 2 |
| 3 deps = { | 3 deps = { |
| 4 "build/gyp": | 4 "build/gyp": |
| 5 "https://chromium.googlesource.com/external/gyp", | 5 "https://chromium.googlesource.com/external/gyp", |
| 6 | 6 |
| 7 "buildtools": | 7 "buildtools": |
| 8 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b 21a81136c7debdddfd063a8", | 8 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b 21a81136c7debdddfd063a8", |
| 9 | 9 |
| 10 "testing/corpus": | 10 "testing/corpus": |
| 11 "https://pdfium.googlesource.com/pdfium_tests@2ddcfbd23aa7ef0a7424ef24a3fac 7acdfb39ee5", | 11 "https://pdfium.googlesource.com/pdfium_tests@2ddcfbd23aa7ef0a7424ef24a3fac 7acdfb39ee5", |
| 12 | 12 |
| 13 "testing/gmock": | 13 "testing/gmock": |
| 14 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f245 65299976b936d1265cb6a271", | 14 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f245 65299976b936d1265cb6a271", |
| 15 | 15 |
| 16 "testing/gtest": | 16 "testing/gtest": |
| 17 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c470 3e6496d1efd19e975ad2b038", | 17 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c470 3e6496d1efd19e975ad2b038", |
| 18 | 18 |
| 19 "tools/clang": | |
| 20 "https://chromium.googlesource.com/chromium/src/tools/clang", | |
| 21 | |
| 19 "v8": | 22 "v8": |
| 20 "https://chromium.googlesource.com/v8/v8.git@9081ee11af0311aecb152bfe80330fc 1bf6085e6", | 23 "https://chromium.googlesource.com/v8/v8.git@9081ee11af0311aecb152bfe80330fc 1bf6085e6", |
| 21 | 24 |
| 22 "v8/third_party/icu": | 25 "v8/third_party/icu": |
| 23 "https://chromium.googlesource.com/chromium/deps/icu46", | 26 "https://chromium.googlesource.com/chromium/deps/icu46", |
| 24 } | 27 } |
| 25 | 28 |
| 26 deps_os = { | 29 deps_os = { |
| 27 "win": { | 30 "win": { |
| 28 "v8/third_party/cygwin": | 31 "v8/third_party/cygwin": |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 'name': 'clang_format_linux', | 74 'name': 'clang_format_linux', |
| 72 'pattern': '.', | 75 'pattern': '.', |
| 73 'action': [ 'download_from_google_storage', | 76 'action': [ 'download_from_google_storage', |
| 74 '--no_resume', | 77 '--no_resume', |
| 75 '--platform=linux*', | 78 '--platform=linux*', |
| 76 '--no_auth', | 79 '--no_auth', |
| 77 '--bucket', 'chromium-clang-format', | 80 '--bucket', 'chromium-clang-format', |
| 78 '-s', 'buildtools/linux64/clang-format.sha1', | 81 '-s', 'buildtools/linux64/clang-format.sha1', |
| 79 ], | 82 ], |
| 80 }, | 83 }, |
| 84 { | |
| 85 # Pull clang if needed or requested via GYP_DEFINES. | |
| 86 # Note: On Win, this should run after win_toolchain, as it may use it. | |
|
Nico
2015/10/15 23:41:22
There's no win_toolchain step here, so you probabl
Oliver Chang
2015/10/16 00:52:15
Done.
| |
| 87 'name': 'clang', | |
| 88 'pattern': '.', | |
| 89 'action': ['python', 'tools/clang/scripts/update.py', '--if-needed'], | |
| 90 }, | |
| 81 ] | 91 ] |
| OLD | NEW |