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

Side by Side Diff: DEPS

Issue 1932683003: Skia GN build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | skia/BUILD.gn » ('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 'build_revision': '28e8fda8744c8c44bac72eee610642798daf2705', 7 'build_revision': 'c557a3544d31513394681f40c8c2512cf7ddcb9e',
8 'buildtools_revision': '5378d73123b64907773cc5c1bb027b2f765ff00a', 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 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 12 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271',
12 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', 13 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038',
13 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', 14 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48',
14 'pdfium_tests_revision': '7e5050a49256a7350df9b8d7ad86e911eb83c021', 15 'pdfium_tests_revision': '7e5050a49256a7350df9b8d7ad86e911eb83c021',
15 'skia_revision': '0a291c7b7eea1807bd58bdaa60c258fd0ebeb257', 16 'skia_revision': '6f47dbaff54a7705ef3e98f1f65c765e56fd9bd0',
16 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', 17 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732',
17 'v8_revision': '5cd0d8f27e3f740179a8a3de7b9d2c0cfae7afb9', 18 'v8_revision': '5cd0d8f27e3f740179a8a3de7b9d2c0cfae7afb9',
18
19 } 19 }
20 20
21 deps = { 21 deps = {
22 "build": 22 "build":
23 Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'), 23 Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'),
24 24
25 "buildtools": 25 "buildtools":
26 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '), 26 Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision '),
27 27
28 "testing/corpus": 28 "testing/corpus":
29 Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), 29 Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'),
30 30
31 "testing/gmock": 31 "testing/gmock":
32 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), 32 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'),
33 33
34 "testing/gtest": 34 "testing/gtest":
35 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), 35 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'),
36 36
37 "third_party/icu": 37 "third_party/icu":
38 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), 38 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'),
39 39
40 "third_party/skia": 40 "third_party/skia":
41 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), 41 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'),
42 42
43 "tools/clang": 43 "tools/clang":
44 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), 44 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'),
45 45
46 "tools/generate_library_loader":
47 Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" +
48 Var('gen_library_loader_revision'),
49
46 "tools/gyp": 50 "tools/gyp":
47 Var('chromium_git') + "/external/gyp", 51 Var('chromium_git') + "/external/gyp",
48 52
49 "v8": 53 "v8":
50 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), 54 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'),
51 55
52 "v8/base/trace_event/common": 56 "v8/base/trace_event/common":
53 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'), 57 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'),
54 } 58 }
55 59
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 '--if-needed' 173 '--if-needed'
170 ], 174 ],
171 }, 175 },
172 { 176 {
173 # Update the Windows toolchain if necessary. 177 # Update the Windows toolchain if necessary.
174 'name': 'win_toolchain', 178 'name': 'win_toolchain',
175 'pattern': '.', 179 'pattern': '.',
176 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], 180 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'],
177 }, 181 },
178 ] 182 ]
OLDNEW
« no previous file with comments | « no previous file | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698