-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDEPS
62 lines (60 loc) · 1.29 KB
/
DEPS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
vars = {
'git_url': 'https://chromium.googlesource.com',
}
deps = {
'src/buildtools':
Var('git_url') + '/chromium/buildtools.git@535aff24c308a715751028173e569596bcfe12a7',
}
hooks = [{
'action': [
'download_from_google_storage',
'--no_resume',
'--platform=win32',
'--no_auth',
'--bucket',
'chromium-gn',
'-s',
'src/buildtools/win/gn.exe.sha1'
],
'pattern': '.',
'name': 'gn_win'
}, {
'action': [
'download_from_google_storage',
'--no_resume',
'--platform=darwin',
'--no_auth',
'--bucket',
'chromium-gn',
'-s',
'src/buildtools/mac/gn.sha1'
],
'pattern': '.',
'name': 'gn_mac'
}, {
'action': [
'download_from_google_storage',
'--no_resume',
'--platform=linux*',
'--no_auth',
'--bucket',
'chromium-gn',
'-s',
'src/buildtools/linux32/gn.sha1'
],
'pattern': '.',
'name': 'gn_linux32'
}, {
'action': [
'download_from_google_storage',
'--no_resume',
'--platform=linux*',
'--no_auth',
'--bucket',
'chromium-gn',
'-s',
'src/buildtools/linux64/gn.sha1'
],
'pattern': '.',
'name': 'gn_linux64'
}]