OLD | NEW |
1 use_relative_paths = True | 1 use_relative_paths = True |
2 | 2 |
3 vars = { | 3 vars = { |
4 'chromium_git': 'https://chromium.googlesource.com', | 4 'chromium_git': 'https://chromium.googlesource.com', |
5 'pdfium_git': 'https://pdfium.googlesource.com', | 5 'pdfium_git': 'https://pdfium.googlesource.com', |
6 | 6 |
7 'android_ndk_revision': '5022f40f12953c02b2614c5f7beb981ec5d0e833', | 7 'android_ndk_revision': '5022f40f12953c02b2614c5f7beb981ec5d0e833', |
8 'build_revision': 'b73bafdd0ff0efc8835de6e646b47eec0a2a38a4', | 8 'build_revision': 'b73bafdd0ff0efc8835de6e646b47eec0a2a38a4', |
9 'buildtools_revision': 'adb8bf4e8fc92aa1717bf151b862d58e6f27c4f2', | 9 'buildtools_revision': '5fd66957f08bb752dca714a591c84587c9d70762', |
10 'catapult_revision': '327256cb1c387e62a2c7e6960e2398867665fb51', | 10 'catapult_revision': '327256cb1c387e62a2c7e6960e2398867665fb51', |
11 'clang_revision': '797371be0a75c9892d6acb486d0430915ea538a6', | 11 'clang_revision': '797371be0a75c9892d6acb486d0430915ea538a6', |
12 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', | 12 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
13 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', | 13 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', |
14 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', | 14 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', |
15 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', | 15 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', |
16 'icu_revision': '2341038bf72869a5683a893a2b319a48ffec7f62', | 16 'icu_revision': '2341038bf72869a5683a893a2b319a48ffec7f62', |
17 'pdfium_tests_revision': 'e86a1bac556194ee572b0cd37d04ea646c7b5320', | 17 'pdfium_tests_revision': 'e86a1bac556194ee572b0cd37d04ea646c7b5320', |
18 'skia_revision': '39f7a10a04a914384944d8bf62621144ac4eeaa3', | 18 'skia_revision': '39f7a10a04a914384944d8bf62621144ac4eeaa3', |
19 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', | 19 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'), | 72 Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'), |
73 "third_party/catapult": | 73 "third_party/catapult": |
74 Var('chromium_git') + "/external/github.com/catapult-project/catapult.git@
" + Var('catapult_revision'), | 74 Var('chromium_git') + "/external/github.com/catapult-project/catapult.git@
" + Var('catapult_revision'), |
75 }, | 75 }, |
76 "win": { | 76 "win": { |
77 "v8/third_party/cygwin": | 77 "v8/third_party/cygwin": |
78 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), | 78 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), |
79 }, | 79 }, |
80 } | 80 } |
81 | 81 |
| 82 recursedeps = [ |
| 83 # buildtools provides clang_format, libc++, and libc++abi |
| 84 'buildtools', |
| 85 ] |
| 86 |
82 include_rules = [ | 87 include_rules = [ |
83 # Basic stuff that everyone can use. | 88 # Basic stuff that everyone can use. |
84 # Note: public is not here because core cannot depend on public. | 89 # Note: public is not here because core cannot depend on public. |
85 '+testing', | 90 '+testing', |
86 '+third_party/base', | 91 '+third_party/base', |
87 ] | 92 ] |
88 | 93 |
89 specific_include_rules = { | 94 specific_include_rules = { |
90 # Allow embedder tests to use public APIs. | 95 # Allow embedder tests to use public APIs. |
91 "(.*embeddertest\.cpp)": [ | 96 "(.*embeddertest\.cpp)": [ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'pdfium/tools/clang/scripts/update.py' | 174 'pdfium/tools/clang/scripts/update.py' |
170 ], | 175 ], |
171 }, | 176 }, |
172 { | 177 { |
173 # Update the Windows toolchain if necessary. | 178 # Update the Windows toolchain if necessary. |
174 'name': 'win_toolchain', | 179 'name': 'win_toolchain', |
175 'pattern': '.', | 180 'pattern': '.', |
176 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], | 181 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], |
177 }, | 182 }, |
178 ] | 183 ] |
OLD | NEW |