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

Side by Side Diff: DEPS

Issue 2028603003: Fix Asan build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 6 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') | no next file » | 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 'build_revision': 'c557a3544d31513394681f40c8c2512cf7ddcb9e', 7 'build_revision': 'c557a3544d31513394681f40c8c2512cf7ddcb9e',
8 'buildtools_revision': '309289315767f615256eada4653b4917cf148c8e', 8 'buildtools_revision': '309289315767f615256eada4653b4917cf148c8e',
9 'clang_revision': 'b6f620b311665e2d96d0921833f54295b9bbf925', 9 'clang_revision': 'b6f620b311665e2d96d0921833f54295b9bbf925',
10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df',
11 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', 11 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1',
12 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 12 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271',
13 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', 13 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038',
14 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', 14 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48',
15 'pdfium_tests_revision': '6c769320872e6ca82da4adaec1a497237f71b543', 15 'pdfium_tests_revision': '6c769320872e6ca82da4adaec1a497237f71b543',
16 'skia_revision': '6f47dbaff54a7705ef3e98f1f65c765e56fd9bd0', 16 'skia_revision': '6f47dbaff54a7705ef3e98f1f65c765e56fd9bd0',
17 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d',
17 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', 18 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732',
18 'v8_revision': '055bfa771a7bd763305d3bafd43e39459abc95a4', 19 'v8_revision': '055bfa771a7bd763305d3bafd43e39459abc95a4',
19 } 20 }
20 21
21 deps = { 22 deps = {
22 "build": 23 "build":
23 Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'), 24 Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'),
24 25
25 "buildtools": 26 "buildtools":
26 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '), 27 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '),
(...skipping 16 matching lines...) Expand all
43 "tools/clang": 44 "tools/clang":
44 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), 45 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'),
45 46
46 "tools/generate_library_loader": 47 "tools/generate_library_loader":
47 Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" + 48 Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" +
48 Var('gen_library_loader_revision'), 49 Var('gen_library_loader_revision'),
49 50
50 "tools/gyp": 51 "tools/gyp":
51 Var('chromium_git') + "/external/gyp", 52 Var('chromium_git') + "/external/gyp",
52 53
54 "tools/memory":
55 Var('chromium_git') + "/chromium/src/tools/memory@" +
56 Var('tools_memory_revision'),
57
53 "v8": 58 "v8":
54 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), 59 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'),
55 60
56 "v8/base/trace_event/common": 61 "v8/base/trace_event/common":
57 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'), 62 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" +
63 Var('trace_event_revision'),
58 } 64 }
59 65
60 deps_os = { 66 deps_os = {
61 "win": { 67 "win": {
62 "v8/third_party/cygwin": 68 "v8/third_party/cygwin":
63 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), 69 Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'),
64 }, 70 },
65 } 71 }
66 72
67 include_rules = [ 73 include_rules = [
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 '--if-needed' 179 '--if-needed'
174 ], 180 ],
175 }, 181 },
176 { 182 {
177 # Update the Windows toolchain if necessary. 183 # Update the Windows toolchain if necessary.
178 'name': 'win_toolchain', 184 'name': 'win_toolchain',
179 'pattern': '.', 185 'pattern': '.',
180 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], 186 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'],
181 }, 187 },
182 ] 188 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698