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