| 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 22 matching lines...) Expand all Loading... |
| 33 include_rules = [ | 33 include_rules = [ |
| 34 '+testing', | 34 '+testing', |
| 35 '+third_party/base', | 35 '+third_party/base', |
| 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', 'pdfium/build/gyp_pdfium'], |
| 44 }, | 44 }, |
| 45 # Pull clang-format binaries using checked-in hashes. | 45 # Pull clang-format binaries using checked-in hashes. |
| 46 { | 46 { |
| 47 'name': 'clang_format_win', | 47 'name': 'clang_format_win', |
| 48 'pattern': '.', | 48 'pattern': '.', |
| 49 'action': [ 'download_from_google_storage', | 49 'action': [ 'download_from_google_storage', |
| 50 '--no_resume', | 50 '--no_resume', |
| 51 '--platform=win32', | 51 '--platform=win32', |
| 52 '--no_auth', | 52 '--no_auth', |
| 53 '--bucket', 'chromium-clang-format', | 53 '--bucket', 'chromium-clang-format', |
| 54 '-s', 'buildtools/win/clang-format.exe.sha1', | 54 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1', |
| 55 ], | 55 ], |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'name': 'clang_format_mac', | 58 'name': 'clang_format_mac', |
| 59 'pattern': '.', | 59 'pattern': '.', |
| 60 'action': [ 'download_from_google_storage', | 60 'action': [ 'download_from_google_storage', |
| 61 '--no_resume', | 61 '--no_resume', |
| 62 '--platform=darwin', | 62 '--platform=darwin', |
| 63 '--no_auth', | 63 '--no_auth', |
| 64 '--bucket', 'chromium-clang-format', | 64 '--bucket', 'chromium-clang-format', |
| 65 '-s', 'buildtools/mac/clang-format.sha1', | 65 '-s', 'pdfium/buildtools/mac/clang-format.sha1', |
| 66 ], | 66 ], |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 'name': 'clang_format_linux', | 69 'name': 'clang_format_linux', |
| 70 'pattern': '.', | 70 'pattern': '.', |
| 71 'action': [ 'download_from_google_storage', | 71 'action': [ 'download_from_google_storage', |
| 72 '--no_resume', | 72 '--no_resume', |
| 73 '--platform=linux*', | 73 '--platform=linux*', |
| 74 '--no_auth', | 74 '--no_auth', |
| 75 '--bucket', 'chromium-clang-format', | 75 '--bucket', 'chromium-clang-format', |
| 76 '-s', 'buildtools/linux64/clang-format.sha1', | 76 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
| 77 ], | 77 ], |
| 78 }, | 78 }, |
| 79 ] | 79 ] |
| OLD | NEW |