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

Side by Side Diff: DEPS

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

Powered by Google App Engine
This is Rietveld 408576698