Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: DEPS

Issue 2384353002: Ready to enable MSan build for PDFium (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | tools/msan/blacklist.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': '5fd66957f08bb752dca714a591c84587c9d70762', 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 'instrumented_lib_revision': '45f5814b1543e41ea0be54c771e3840ea52cca4a',
17 'pdfium_tests_revision': '06411790a46e6497e5293f921ea9aa9fb2615e41', 18 'pdfium_tests_revision': '06411790a46e6497e5293f921ea9aa9fb2615e41',
18 'skia_revision': '39f7a10a04a914384944d8bf62621144ac4eeaa3', 19 'skia_revision': '39f7a10a04a914384944d8bf62621144ac4eeaa3',
19 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', 20 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d',
20 'trace_event_revision': '6232c13e4edb36c84c61653fdae5a4afb5af9745', 21 'trace_event_revision': '6232c13e4edb36c84c61653fdae5a4afb5af9745',
21 'v8_revision': 'a964163e6ac4f1124b22ea7e46b8afe26dec02e0', 22 'v8_revision': 'a964163e6ac4f1124b22ea7e46b8afe26dec02e0',
22 } 23 }
23 24
24 deps = { 25 deps = {
25 "base/trace_event/common": 26 "base/trace_event/common":
26 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + 27 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" +
(...skipping 10 matching lines...) Expand all
37 38
38 "testing/gmock": 39 "testing/gmock":
39 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), 40 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'),
40 41
41 "testing/gtest": 42 "testing/gtest":
42 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), 43 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'),
43 44
44 "third_party/icu": 45 "third_party/icu":
45 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), 46 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'),
46 47
48 "third_party/instrumented_libraries":
49 Var('chromium_git') + "/chromium/src/third_party/instrumented_libraries.git@ " + Var('instrumented_lib_revision'),
50
47 "third_party/skia": 51 "third_party/skia":
48 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), 52 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'),
49 53
50 "tools/clang": 54 "tools/clang":
51 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), 55 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'),
52 56
53 "tools/generate_library_loader": 57 "tools/generate_library_loader":
54 Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" + 58 Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" +
55 Var('gen_library_loader_revision'), 59 Var('gen_library_loader_revision'),
56 60
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'action': ['python', 177 'action': ['python',
174 'pdfium/tools/clang/scripts/update.py' 178 'pdfium/tools/clang/scripts/update.py'
175 ], 179 ],
176 }, 180 },
177 { 181 {
178 # Update the Windows toolchain if necessary. 182 # Update the Windows toolchain if necessary.
179 'name': 'win_toolchain', 183 'name': 'win_toolchain',
180 'pattern': '.', 184 'pattern': '.',
181 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], 185 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'],
182 }, 186 },
187 {
188 # Pull sanitizer-instrumented third-party libraries if requested via
189 # GYP_DEFINES.
dsinclair 2016/10/04 13:10:27 Should we file a bug to get download_binaries upda
aizatsky 2016/10/04 18:12:58 Most likely. Direct integration with GN is better.
Wei Li 2016/10/06 22:41:02 ok, filed https://crbug.com/653712
190 'name': 'instrumented_libraries',
191 'pattern': '\\.sha1',
192 'action': ['python', 'pdfium/third_party/instrumented_libraries/scripts/down load_binaries.py'],
193 },
194
183 ] 195 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | tools/msan/blacklist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698