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

Side by Side Diff: DEPS

Issue 1812563002: Enable building pdf_use_skia in the standalone build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 use_relative_paths = True 1 use_relative_paths = True
2 2
3 vars = {
4 'chromium_git': 'https://chromium.googlesource.com',
Tom Sepez 2016/03/16 18:51:51 As long as you are going to introduce vars, would
dsinclair 2016/03/16 19:35:14 Done.
5
6 'skia_revision': 'ed854fb897fa134f2f64738a75293502fdcf1af2'
7 }
8
3 deps = { 9 deps = {
4 "build/gyp": 10 "build/gyp":
5 "https://chromium.googlesource.com/external/gyp", 11 "https://chromium.googlesource.com/external/gyp",
6 12
7 "buildtools": 13 "buildtools":
8 "https://chromium.googlesource.com/chromium/buildtools.git@c2f259809d5ede327 5df5ea0842f0431990c4f98", 14 "https://chromium.googlesource.com/chromium/buildtools.git@c2f259809d5ede327 5df5ea0842f0431990c4f98",
9 15
16 "third_party/skia":
Tom Sepez 2016/03/16 18:51:51 alphabetize, move to line 28
dsinclair 2016/03/16 19:35:13 Apparently I can't spell.
17 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'),
18
10 "testing/corpus": 19 "testing/corpus":
11 "https://pdfium.googlesource.com/pdfium_tests@bafb069353f96d441c6a37786d18c d9f5407937f", 20 "https://pdfium.googlesource.com/pdfium_tests@bafb069353f96d441c6a37786d18cd 9f5407937f",
12 21
13 "testing/gmock": 22 "testing/gmock":
14 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f245 65299976b936d1265cb6a271", 23 "https://chromium.googlesource.com/external/googlemock.git@29763965ab52f2456 5299976b936d1265cb6a271",
15 24
16 "testing/gtest": 25 "testing/gtest":
17 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c470 3e6496d1efd19e975ad2b038", 26 "https://chromium.googlesource.com/external/googletest.git@8245545b6dc9c4703 e6496d1efd19e975ad2b038",
18 27
19 "tools/clang": 28 "tools/clang":
20 "https://chromium.googlesource.com/chromium/src/tools/clang", 29 "https://chromium.googlesource.com/chromium/src/tools/clang",
21 30
22 "v8": 31 "v8":
23 "https://chromium.googlesource.com/v8/v8.git@3c3d7e7be80f45eeea0dc74a71d7552 e2afc2985", 32 "https://chromium.googlesource.com/v8/v8.git@3c3d7e7be80f45eeea0dc74a71d7552 e2afc2985",
24 33
25 "v8/base/trace_event/common": 34 "v8/base/trace_event/common":
26 "https://chromium.googlesource.com/chromium/src/base/trace_event/common.git@ d83d44b13d07c2fd0a40101a7deef9b93b841732", 35 "https://chromium.googlesource.com/chromium/src/base/trace_event/common.git@ d83d44b13d07c2fd0a40101a7deef9b93b841732",
27 36
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 '-s', 'pdfium/buildtools/linux64/clang-format.sha1', 93 '-s', 'pdfium/buildtools/linux64/clang-format.sha1',
85 ], 94 ],
86 }, 95 },
87 { 96 {
88 # Pull clang if needed or requested via GYP_DEFINES. 97 # Pull clang if needed or requested via GYP_DEFINES.
89 'name': 'clang', 98 'name': 'clang',
90 'pattern': '.', 99 'pattern': '.',
91 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'], 100 'action': ['python', 'pdfium/tools/clang/scripts/update.py', '--if-needed'],
92 }, 101 },
93 ] 102 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698