OLD | NEW |
---|---|
1 # DO NOT EDIT EXCEPT FOR LOCAL TESTING. | 1 # DO NOT EDIT EXCEPT FOR LOCAL TESTING. |
2 # THIS IS A GENERATED FILE. | 2 # THIS IS A GENERATED FILE. |
3 # ALL MANUAL CHANGES WILL BE OVERWRITTEN. | 3 # ALL MANUAL CHANGES WILL BE OVERWRITTEN. |
4 # SEE http://code.google.com/p/chromium/wiki/UsingGit | 4 # SEE http://code.google.com/p/chromium/wiki/UsingGit |
5 # FOR HOW TO ROLL DEPS | 5 # FOR HOW TO ROLL DEPS |
6 vars = { | 6 vars = { |
7 'webkit_url': | 7 'webkit_url': |
8 'https://chromium.googlesource.com/chromium/blink.git', | 8 'https://chromium.googlesource.com/chromium/blink.git', |
9 'git_url': | 9 'git_url': |
10 'https://chromium.googlesource.com' | 10 'https://chromium.googlesource.com' |
11 } | 11 } |
12 | 12 |
13 deps = { | 13 deps = { |
14 'v8/build/gyp': | 14 'v8/build/gyp': |
15 Var('git_url') + '/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16 b852', | 15 Var('git_url') + '/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16 b852', |
16 'v8/buildtools': | 16 'v8/buildtools': |
17 Var('git_url') + '/chromium/buildtools.git@5d89977ce55240995d1596fe420b8 18468f5ec37', | 17 Var('git_url') + '/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de 5a63e50f07b', |
18 'v8/third_party/icu': | 18 'v8/third_party/icu': |
19 Var('git_url') + '/chromium/deps/icu46.git@7a1ec88f69e25b3efcf76196d07f7 815255db025', | 19 Var('git_url') + '/chromium/deps/icu46.git@7a1ec88f69e25b3efcf76196d07f7 815255db025', |
20 } | 20 } |
21 | 21 |
22 deps_os = { | 22 deps_os = { |
23 'win': | 23 'win': |
24 { | 24 { |
25 'v8/third_party/cygwin': | 25 'v8/third_party/cygwin': |
26 Var('git_url') + '/chromium/deps/cygwin.git@06a117a90c15174436bfa20c eebbfdf43b7eb820', | 26 Var('git_url') + '/chromium/deps/cygwin.git@06a117a90c15174436bfa20c eebbfdf43b7eb820', |
27 'v8/third_party/python_26': | 27 'v8/third_party/python_26': |
28 Var('git_url') + '/chromium/deps/python_26.git@67d19f904470effe3122d 27101cc5a8195abd157', | 28 Var('git_url') + '/chromium/deps/python_26.git@67d19f904470effe3122d 27101cc5a8195abd157', |
29 }, | 29 }, |
30 } | 30 } |
31 | 31 |
32 include_rules = [ | 32 include_rules = [ |
33 | 33 '+include', |
Michael Achenbach
2014/06/26 09:06:36
Can't say much to this...
jochen (gone - plz use gerrit)
2014/06/26 09:47:02
that's just because the file was out of sync with
| |
34 '+unicode' | |
34 ] | 35 ] |
35 | 36 |
36 skip_child_includes = [ | 37 skip_child_includes = [ |
37 | 38 'build', |
39 'third_party' | |
38 ] | 40 ] |
39 | 41 |
40 hooks = [ | 42 hooks = [ |
41 { | 43 { |
42 'action': | 44 'action': |
43 [ | 45 [ |
46 'download_from_google_storage', | |
Michael Achenbach
2014/06/26 09:06:36
nit: Is this autogenerated? The indentation is rat
jochen (gone - plz use gerrit)
2014/06/26 09:47:02
yes, the file is created via deps2git.py
| |
47 '--no_resume', | |
48 '--platform=win32', | |
49 '--no_auth', | |
50 '--bucket', | |
51 'chromium-clang-format', | |
52 '-s', | |
53 'v8/buildtools/win/clang-format.exe.sha1' | |
54 ], | |
55 'pattern': | |
56 '.', | |
57 'name': | |
58 'clang_format_win' | |
59 }, | |
60 { | |
61 'action': | |
62 [ | |
63 'download_from_google_storage', | |
64 '--no_resume', | |
65 '--platform=darwin', | |
66 '--no_auth', | |
67 '--bucket', | |
68 'chromium-clang-format', | |
69 '-s', | |
70 'v8/buildtools/mac/clang-format.sha1' | |
71 ], | |
72 'pattern': | |
73 '.', | |
74 'name': | |
75 'clang_format_mac' | |
76 }, | |
77 { | |
78 'action': | |
79 [ | |
80 'download_from_google_storage', | |
81 '--no_resume', | |
82 '--platform=linux*', | |
83 '--no_auth', | |
84 '--bucket', | |
85 'chromium-clang-format', | |
86 '-s', | |
87 'v8/buildtools/linux64/clang-format.sha1' | |
88 ], | |
89 'pattern': | |
90 '.', | |
91 'name': | |
92 'clang_format_linux' | |
93 }, | |
94 { | |
95 'action': | |
96 [ | |
44 'python', | 97 'python', |
45 'v8/build/gyp_v8' | 98 'v8/build/gyp_v8' |
46 ], | 99 ], |
47 'pattern': | 100 'pattern': |
48 '.' | 101 '.' |
49 } | 102 } |
50 ] | 103 ] |
OLD | NEW |