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 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 | 23 |
24 deps_os = { | 24 deps_os = { |
25 "win": { | 25 "win": { |
26 "v8/third_party/cygwin": | 26 "v8/third_party/cygwin": |
27 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", | 27 "https://chromium.googlesource.com/chromium/deps/cygwin@c89e446b273697fadf
3a10ff1007a97c0b7de6df", |
28 }, | 28 }, |
29 } | 29 } |
30 | 30 |
31 include_rules = [ | 31 include_rules = [ |
32 '+core/include', | |
33 '+fpdfsdk/include', | |
34 '+public', | 32 '+public', |
35 '+testing', | 33 '+testing', |
36 '+third_party/base', | 34 '+third_party/base', |
| 35 '+v8', |
37 ] | 36 ] |
38 | 37 |
39 hooks = [ | 38 hooks = [ |
40 { | 39 { |
41 # 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. |
42 'name': 'gyp', | 41 'name': 'gyp', |
43 'pattern': '.', | 42 'pattern': '.', |
44 'action': ['python', 'build/gyp_pdfium'], | 43 'action': ['python', 'build/gyp_pdfium'], |
45 }, | 44 }, |
46 ] | 45 ] |
OLD | NEW |