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

Side by Side Diff: DEPS

Issue 1899193006: Remove duplication. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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 'build_revision': '2f91397926336dd46ea49ffef702197b9cc2215a', 7 'build_revision': '2f91397926336dd46ea49ffef702197b9cc2215a',
8 'buildtools_revision': '5378d73123b64907773cc5c1bb027b2f765ff00a', 8 'buildtools_revision': '5378d73123b64907773cc5c1bb027b2f765ff00a',
9 'clang_revision': '2956eca572ff0e1b181df65f71a045f061a2eb34', 9 'clang_revision': '2956eca572ff0e1b181df65f71a045f061a2eb34',
10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 10 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 include_rules = [ 63 include_rules = [
64 # Basic stuff that everyone can use. 64 # Basic stuff that everyone can use.
65 # Note: public is not here because core cannot depend on public. 65 # Note: public is not here because core cannot depend on public.
66 '+testing', 66 '+testing',
67 '+third_party/base', 67 '+third_party/base',
68 ] 68 ]
69 69
70 hooks = [ 70 hooks = [
71 # Pull GN binaries. This needs to be before running GYP below. 71 # Pull GN binaries. This needs to be before running GYP below.
72 { 72 {
73 'name': 'gn_win',
73 'action': [ 'download_from_google_storage', 74 'action': [ 'download_from_google_storage',
74 '--no_resume', 75 '--no_resume',
75 '--platform=win32', 76 '--platform=win32',
76 '--no_auth', 77 '--no_auth',
77 '--bucket', 'chromium-gn', 78 '--bucket', 'chromium-gn',
78 '-s', 'pdfium/buildtools/win/gn.exe.sha1', 79 '-s', 'pdfium/buildtools/win/gn.exe.sha1',
79 ], 80 ],
80 }, 81 },
81 { 82 {
82 'name': 'gn_mac', 83 'name': 'gn_mac',
(...skipping 28 matching lines...) Expand all
111 'pdfium/build/linux/sysroot_scripts/install-sysroot.py', 112 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
112 '--running-as-hook' 113 '--running-as-hook'
113 ], 114 ],
114 }, 115 },
115 { 116 {
116 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 117 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
117 'name': 'gyp', 118 'name': 'gyp',
118 'pattern': '.', 119 'pattern': '.',
119 'action': ['python', 'pdfium/build_gyp/gyp_pdfium'], 120 'action': ['python', 'pdfium/build_gyp/gyp_pdfium'],
120 }, 121 },
121 # Pull GN binaries. This needs to be before running GYP below.
122 {
123 'name': 'gn_win',
124 'pattern': '.',
125 'action': [ 'download_from_google_storage',
126 '--no_resume',
127 '--platform=win32',
128 '--no_auth',
129 '--bucket', 'chromium-gn',
130 '-s', 'pdfium/buildtools/win/gn.exe.sha1',
131 ],
132 },
133 {
134 'name': 'gn_mac',
135 'pattern': '.',
136 'action': [ 'download_from_google_storage',
137 '--no_resume',
138 '--platform=darwin',
139 '--no_auth',
140 '--bucket', 'chromium-gn',
141 '-s', 'pdfium/buildtools/mac/gn.sha1',
142 ],
143 },
144 {
145 'name': 'gn_linux64',
146 'pattern': '.',
147 'action': [ 'download_from_google_storage',
148 '--no_resume',
149 '--platform=linux*',
150 '--no_auth',
151 '--bucket', 'chromium-gn',
152 '-s', 'pdfium/buildtools/linux64/gn.sha1',
153 ],
154 },
155 # Pull clang-format binaries using checked-in hashes. 122 # Pull clang-format binaries using checked-in hashes.
156 { 123 {
157 'name': 'clang_format_win', 124 'name': 'clang_format_win',
158 'pattern': '.', 125 'pattern': '.',
159 'action': [ 'download_from_google_storage', 126 'action': [ 'download_from_google_storage',
160 '--no_resume', 127 '--no_resume',
161 '--platform=win32', 128 '--platform=win32',
162 '--no_auth', 129 '--no_auth',
163 '--bucket', 'chromium-clang-format', 130 '--bucket', 'chromium-clang-format',
164 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1', 131 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1',
(...skipping 24 matching lines...) Expand all
189 { 156 {
190 # Pull clang if needed or requested via GYP_DEFINES. 157 # Pull clang if needed or requested via GYP_DEFINES.
191 'name': 'clang', 158 'name': 'clang',
192 'pattern': '.', 159 'pattern': '.',
193 'action': ['python', 160 'action': ['python',
194 'pdfium/tools/clang/scripts/update.py', 161 'pdfium/tools/clang/scripts/update.py',
195 '--if-needed' 162 '--if-needed'
196 ], 163 ],
197 }, 164 },
198 ] 165 ]
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