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 'build_revision': '4842479bd8da7b9e5eb027f8c15bee533f9c328f', | 7 'android_ndk_revision': '5022f40f12953c02b2614c5f7beb981ec5d0e833', |
| 8 'build_revision': '9bbfcd5cce0290376e46f3aeaca3475e96a67fdb', |
8 'buildtools_revision': '099f1da55bfe8caa12266371a7eb983698fb1d87', | 9 'buildtools_revision': '099f1da55bfe8caa12266371a7eb983698fb1d87', |
| 10 'catapult_revision': '8ff23141e1df724317e9f558644ce2a7d8afde54', |
9 'clang_revision': 'b6f620b311665e2d96d0921833f54295b9bbf925', | 11 'clang_revision': 'b6f620b311665e2d96d0921833f54295b9bbf925', |
10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', | 12 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
11 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', | 13 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', |
12 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', | 14 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', |
13 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', | 15 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', |
14 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', | 16 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', |
15 'pdfium_tests_revision': '6c769320872e6ca82da4adaec1a497237f71b543', | 17 'pdfium_tests_revision': '6c769320872e6ca82da4adaec1a497237f71b543', |
16 'skia_revision': '7942f22c607caf826a6a609b89338a569d0a30e7', | 18 'skia_revision': '7942f22c607caf826a6a609b89338a569d0a30e7', |
17 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', | 19 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', |
18 'trace_event_revision': '54b8455be9505c2cb0cf5c26bb86739c236471aa', | 20 'trace_event_revision': '54b8455be9505c2cb0cf5c26bb86739c236471aa', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 59 |
58 "v8": | 60 "v8": |
59 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), | 61 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), |
60 | 62 |
61 "v8/base/trace_event/common": | 63 "v8/base/trace_event/common": |
62 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + | 64 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + |
63 Var('trace_event_revision'), | 65 Var('trace_event_revision'), |
64 } | 66 } |
65 | 67 |
66 deps_os = { | 68 deps_os = { |
| 69 "android": { |
| 70 "third_party/android_ndk": |
| 71 Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'), |
| 72 "third_party/catapult": |
| 73 Var('chromium_git') + "/external/github.com/catapult-project/catapult.git@
" + Var('catapult_revision'), |
| 74 }, |
67 "win": { | 75 "win": { |
68 "v8/third_party/cygwin": | 76 "v8/third_party/cygwin": |
69 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), | 77 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), |
70 }, | 78 }, |
71 } | 79 } |
72 | 80 |
73 include_rules = [ | 81 include_rules = [ |
74 # Basic stuff that everyone can use. | 82 # Basic stuff that everyone can use. |
75 # Note: public is not here because core cannot depend on public. | 83 # Note: public is not here because core cannot depend on public. |
76 '+testing', | 84 '+testing', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 '--if-needed' | 187 '--if-needed' |
180 ], | 188 ], |
181 }, | 189 }, |
182 { | 190 { |
183 # Update the Windows toolchain if necessary. | 191 # Update the Windows toolchain if necessary. |
184 'name': 'win_toolchain', | 192 'name': 'win_toolchain', |
185 'pattern': '.', | 193 'pattern': '.', |
186 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], | 194 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], |
187 }, | 195 }, |
188 ] | 196 ] |
OLD | NEW |