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

Side by Side Diff: DEPS

Issue 1900823002: Use lkgr revision of Clang for PDFium (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 years, 8 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 | 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 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98', 7 'buildtools_revision': 'c2f259809d5ede3275df5ea0842f0431990c4f98',
8 'clang_revision': '87058e09f9c547eb5d00cb8ca666c6aec203a117',
8 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 9 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df',
9 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 10 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271',
10 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', 11 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038',
11 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', 12 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48',
12 'pdfium_tests_revision': 'eb87214cb2088536e96aae517f3a281818fbf5b0', 13 'pdfium_tests_revision': 'eb87214cb2088536e96aae517f3a281818fbf5b0',
13 'skia_revision': '0a291c7b7eea1807bd58bdaa60c258fd0ebeb257', 14 'skia_revision': '0a291c7b7eea1807bd58bdaa60c258fd0ebeb257',
14 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', 15 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732',
15 'v8_revision': '47bcec782b752ba411bd8bba6e390d1cc1c3226e', 16 'v8_revision': '47bcec782b752ba411bd8bba6e390d1cc1c3226e',
16 17
17 } 18 }
(...skipping 11 matching lines...) Expand all
29 "testing/gmock": 30 "testing/gmock":
30 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), 31 Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'),
31 32
32 "testing/gtest": 33 "testing/gtest":
33 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), 34 Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'),
34 35
35 "third_party/skia": 36 "third_party/skia":
36 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), 37 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'),
37 38
38 "tools/clang": 39 "tools/clang":
39 Var('chromium_git') + "/chromium/src/tools/clang", 40 Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'),
40 41
41 "v8": 42 "v8":
42 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), 43 Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'),
43 44
44 "v8/base/trace_event/common": 45 "v8/base/trace_event/common":
45 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'), 46 Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('tr ace_event_revision'),
46 47
47 "v8/third_party/icu": 48 "v8/third_party/icu":
48 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), 49 Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'),
49 } 50 }
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', 138 '-s', 'pdfium/buildtools/linux64/clang-format.sha1',
138 ], 139 ],
139 }, 140 },
140 { 141 {
141 # Pull clang if needed or requested via GYP_DEFINES. 142 # Pull clang if needed or requested via GYP_DEFINES.
142 'name': 'clang', 143 'name': 'clang',
143 'pattern': '.', 144 'pattern': '.',
144 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], 145 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'],
145 }, 146 },
146 ] 147 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698