| 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": |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 | 25 |
| 26 deps_os = { | 26 deps_os = { |
| 27 "win": { | 27 "win": { |
| 28 "v8/third_party/cygwin": | 28 "v8/third_party/cygwin": |
| 29 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", | 29 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", |
| 30 }, | 30 }, |
| 31 } | 31 } |
| 32 | 32 |
| 33 include_rules = [ | 33 include_rules = [ |
| 34 '+public', | |
| 35 '+testing', | 34 '+testing', |
| 36 '+third_party/base', | 35 '+third_party/base', |
| 37 '+v8', | |
| 38 ] | 36 ] |
| 39 | 37 |
| 40 hooks = [ | 38 hooks = [ |
| 41 { | 39 { |
| 42 # 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. |
| 43 'name': 'gyp', | 41 'name': 'gyp', |
| 44 'pattern': '.', | 42 'pattern': '.', |
| 45 'action': ['python', 'build/gyp_pdfium'], | 43 'action': ['python', 'build/gyp_pdfium'], |
| 46 }, | 44 }, |
| 47 # Pull clang-format binaries using checked-in hashes. | 45 # Pull clang-format binaries using checked-in hashes. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 72 'pattern': '.', | 70 'pattern': '.', |
| 73 'action': [ 'download_from_google_storage', | 71 'action': [ 'download_from_google_storage', |
| 74 '--no_resume', | 72 '--no_resume', |
| 75 '--platform=linux*', | 73 '--platform=linux*', |
| 76 '--no_auth', | 74 '--no_auth', |
| 77 '--bucket', 'chromium-clang-format', | 75 '--bucket', 'chromium-clang-format', |
| 78 '-s', 'buildtools/linux64/clang-format.sha1', | 76 '-s', 'buildtools/linux64/clang-format.sha1', |
| 79 ], | 77 ], |
| 80 }, | 78 }, |
| 81 ] | 79 ] |
| OLD | NEW |