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 |
(...skipping 24 matching lines...) Expand all Loading... |
35 '+v8', | 35 '+v8', |
36 ] | 36 ] |
37 | 37 |
38 hooks = [ | 38 hooks = [ |
39 { | 39 { |
40 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 40 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
41 'name': 'gyp', | 41 'name': 'gyp', |
42 'pattern': '.', | 42 'pattern': '.', |
43 'action': ['python', 'build/gyp_pdfium'], | 43 'action': ['python', 'build/gyp_pdfium'], |
44 }, | 44 }, |
45 ] | 45 # Pull clang-format binaries using checked-in hashes. |
| 46 { |
| 47 'name': 'clang_format_win', |
| 48 'pattern': '.', |
| 49 'action': [ 'download_from_google_storage', |
| 50 '--no_resume', |
| 51 '--platform=win32', |
| 52 '--no_auth', |
| 53 '--bucket', 'chromium-clang-format', |
| 54 '-s', 'buildtools/win/clang-format.exe.sha1', |
| 55 ], |
| 56 }, |
| 57 { |
| 58 'name': 'clang_format_mac', |
| 59 'pattern': '.', |
| 60 'action': [ 'download_from_google_storage', |
| 61 '--no_resume', |
| 62 '--platform=darwin', |
| 63 '--no_auth', |
| 64 '--bucket', 'chromium-clang-format', |
| 65 '-s', 'buildtools/mac/clang-format.sha1', |
| 66 ], |
| 67 }, |
| 68 { |
| 69 'name': 'clang_format_linux', |
| 70 'pattern': '.', |
| 71 'action': [ 'download_from_google_storage', |
| 72 '--no_resume', |
| 73 '--platform=linux*', |
| 74 '--no_auth', |
| 75 '--bucket', 'chromium-clang-format', |
| 76 '-s', 'buildtools/linux64/clang-format.sha1', |
| 77 ], |
| 78 }, |
| 79 ] |
OLD | NEW |