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

Side by Side Diff: DEPS

Issue 1422633002: Merge to XFA: Change DEPS hooks paths to include 'pdfium/'. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 2 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 | docs/build.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 deps = { 1 deps = {
2 "build/gyp": 2 "build/gyp":
3 "https://chromium.googlesource.com/external/gyp", 3 "https://chromium.googlesource.com/external/gyp",
4 4
5 "buildtools": 5 "buildtools":
6 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b 21a81136c7debdddfd063a8", 6 "https://chromium.googlesource.com/chromium/buildtools.git@46ce8cb60364e9e0b 21a81136c7debdddfd063a8",
7 7
8 "testing/corpus": 8 "testing/corpus":
9 "https://pdfium.googlesource.com/pdfium_tests@4b9a1d593e5a101d034a4f1195174 a22c179a42d", 9 "https://pdfium.googlesource.com/pdfium_tests@4b9a1d593e5a101d034a4f1195174 a22c179a42d",
10 10
(...skipping 20 matching lines...) Expand all
31 include_rules = [ 31 include_rules = [
32 '+testing', 32 '+testing',
33 '+third_party/base', 33 '+third_party/base',
34 ] 34 ]
35 35
36 hooks = [ 36 hooks = [
37 { 37 {
38 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 38 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
39 'name': 'gyp', 39 'name': 'gyp',
40 'pattern': '.', 40 'pattern': '.',
41 'action': ['python', 'build/gyp_pdfium'], 41 'action': ['python', 'pdfium/build/gyp_pdfium'],
42 }, 42 },
43 # Pull clang-format binaries using checked-in hashes. 43 # Pull clang-format binaries using checked-in hashes.
44 { 44 {
45 'name': 'clang_format_win', 45 'name': 'clang_format_win',
46 'pattern': '.', 46 'pattern': '.',
47 'action': [ 'download_from_google_storage', 47 'action': [ 'download_from_google_storage',
48 '--no_resume', 48 '--no_resume',
49 '--platform=win32', 49 '--platform=win32',
50 '--no_auth', 50 '--no_auth',
51 '--bucket', 'chromium-clang-format', 51 '--bucket', 'chromium-clang-format',
52 '-s', 'buildtools/win/clang-format.exe.sha1', 52 '-s', 'pdfium/buildtools/win/clang-format.exe.sha1',
53 ], 53 ],
54 }, 54 },
55 { 55 {
56 'name': 'clang_format_mac', 56 'name': 'clang_format_mac',
57 'pattern': '.', 57 'pattern': '.',
58 'action': [ 'download_from_google_storage', 58 'action': [ 'download_from_google_storage',
59 '--no_resume', 59 '--no_resume',
60 '--platform=darwin', 60 '--platform=darwin',
61 '--no_auth', 61 '--no_auth',
62 '--bucket', 'chromium-clang-format', 62 '--bucket', 'chromium-clang-format',
63 '-s', 'buildtools/mac/clang-format.sha1', 63 '-s', 'pdfium/buildtools/mac/clang-format.sha1',
64 ], 64 ],
65 }, 65 },
66 { 66 {
67 'name': 'clang_format_linux', 67 'name': 'clang_format_linux',
68 'pattern': '.', 68 'pattern': '.',
69 'action': [ 'download_from_google_storage', 69 'action': [ 'download_from_google_storage',
70 '--no_resume', 70 '--no_resume',
71 '--platform=linux*', 71 '--platform=linux*',
72 '--no_auth', 72 '--no_auth',
73 '--bucket', 'chromium-clang-format', 73 '--bucket', 'chromium-clang-format',
74 '-s', 'buildtools/linux64/clang-format.sha1', 74 '-s', 'pdfium/buildtools/linux64/clang-format.sha1',
75 ], 75 ],
76 }, 76 },
77 ] 77 ]
OLDNEW
« no previous file with comments | « no previous file | docs/build.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698