OLD | NEW |
1 deps = { | 1 deps = { |
2 "build/gyp": | 2 "build/gyp": |
3 "https://chromium.googlesource.com/external/gyp", | 3 "https://chromium.googlesource.com/external/gyp", |
4 | 4 |
5 "buildtools": | 5 "buildtools": |
6 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b
21a81136c7debdddfd063a8", | 6 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b
21a81136c7debdddfd063a8", |
7 | 7 |
8 "testing/corpus": | 8 "testing/corpus": |
9 "https://pdfium.googlesource.com/pdfium_tests@4b9a1d593e5a101d034a4f1195174
a22c179a42d", | 9 "https://pdfium.googlesource.com/pdfium_tests@4b9a1d593e5a101d034a4f1195174
a22c179a42d", |
10 | 10 |
11 "testing/gmock": | 11 "testing/gmock": |
12 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f245
65299976b936d1265cb6a271", | 12 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f245
65299976b936d1265cb6a271", |
13 | 13 |
14 "testing/gtest": | 14 "testing/gtest": |
15 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c470
3e6496d1efd19e975ad2b038", | 15 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c470
3e6496d1efd19e975ad2b038", |
16 | 16 |
| 17 "tools/clang": |
| 18 "https://chromium.googlesource.com/chromium/src/tools/clang", |
| 19 |
17 "v8": | 20 "v8": |
18 "https://chromium.googlesource.com/v8/v8.git@4d03c3aabad6517ff058124bb799ca6
a4156e570", | 21 "https://chromium.googlesource.com/v8/v8.git@4d03c3aabad6517ff058124bb799ca6
a4156e570", |
19 | 22 |
20 "v8/third_party/icu": | 23 "v8/third_party/icu": |
21 "https://chromium.googlesource.com/chromium/deps/icu46", | 24 "https://chromium.googlesource.com/chromium/deps/icu46", |
22 } | 25 } |
23 | 26 |
24 deps_os = { | 27 deps_os = { |
25 "win": { | 28 "win": { |
26 "v8/third_party/cygwin": | 29 "v8/third_party/cygwin": |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'name': 'clang_format_linux', | 70 'name': 'clang_format_linux', |
68 'pattern': '.', | 71 'pattern': '.', |
69 'action': [ 'download_from_google_storage', | 72 'action': [ 'download_from_google_storage', |
70 '--no_resume', | 73 '--no_resume', |
71 '--platform=linux*', | 74 '--platform=linux*', |
72 '--no_auth', | 75 '--no_auth', |
73 '--bucket', 'chromium-clang-format', | 76 '--bucket', 'chromium-clang-format', |
74 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', | 77 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
75 ], | 78 ], |
76 }, | 79 }, |
| 80 { |
| 81 # Pull clang if needed or requested via GYP_DEFINES. |
| 82 'name': 'clang', |
| 83 'pattern': '.', |
| 84 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], |
| 85 }, |
77 ] | 86 ] |
OLD | NEW |