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 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 | 28 |
29 deps_os = { | 29 deps_os = { |
30 "win": { | 30 "win": { |
31 "v8/third_party/cygwin": | 31 "v8/third_party/cygwin": |
32 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", | 32 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", |
33 }, | 33 }, |
34 } | 34 } |
35 | 35 |
36 include_rules = [ | 36 include_rules = [ |
| 37 # Basic stuff that everyone can use. |
| 38 # Note: public is not here because core cannot depend on public. |
37 '+testing', | 39 '+testing', |
38 '+third_party/base', | 40 '+third_party/base', |
39 ] | 41 ] |
40 | 42 |
41 hooks = [ | 43 hooks = [ |
42 { | 44 { |
43 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 45 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
44 'name': 'gyp', | 46 'name': 'gyp', |
45 'pattern': '.', | 47 'pattern': '.', |
46 'action': ['python', 'pdfium/build/gyp_pdfium'], | 48 'action': ['python', 'pdfium/build/gyp_pdfium'], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', | 81 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
80 ], | 82 ], |
81 }, | 83 }, |
82 { | 84 { |
83 # Pull clang if needed or requested via GYP_DEFINES. | 85 # Pull clang if needed or requested via GYP_DEFINES. |
84 'name': 'clang', | 86 'name': 'clang', |
85 'pattern': '.', | 87 'pattern': '.', |
86 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], | 88 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], |
87 }, | 89 }, |
88 ] | 90 ] |
OLD | NEW |