| 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 '+core/include', | |
| 35 '+fpdfsdk/include', | |
| 36 '+public', | 34 '+public', |
| 37 '+testing', | 35 '+testing', |
| 38 '+third_party/base', | 36 '+third_party/base', |
| 37 '+v8', |
| 39 ] | 38 ] |
| 40 | 39 |
| 41 hooks = [ | 40 hooks = [ |
| 42 { | 41 { |
| 43 # 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. |
| 44 'name': 'gyp', | 43 'name': 'gyp', |
| 45 'pattern': '.', | 44 'pattern': '.', |
| 46 'action': ['python', 'build/gyp_pdfium'], | 45 'action': ['python', 'build/gyp_pdfium'], |
| 47 }, | 46 }, |
| 48 ] | 47 ] |
| OLD | NEW |