-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEPS
56 lines (48 loc) · 1.14 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
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
gclient_gn_args = [
'build_with_chromium',
'checkout_android',
'checkout_android_prebuilts_build_tools',
'checkout_android_native_support',
'checkout_google_benchmark',
'checkout_ios_webkit',
'checkout_nacl',
'checkout_oculus_sdk',
'checkout_openxr',
'mac_xcode_version',
]
vars = {
"buildspec_platforms": "android",
'build_with_chromium': True,
'checkout_android': True,
'checkout_android_prebuilts_build_tools': True,
'checkout_android_native_support': True,
'checkout_google_benchmark': False,
'checkout_ios_webkit': False,
'checkout_nacl': True,
'checkout_oculus_sdk' : False,
'checkout_openxr' : False,
'mac_xcode_version': 'default',
'chromium_git': 'https://chromium.googlesource.com',
'chromium_version' : '103.0.5060.129',
}
deps = {
'src':
Var('chromium_git') + '/chromium/src.git@' + Var('chromium_version'),
}
hooks = [
{
'name': 'patch_chromium',
'pattern': 'src',
'action': [
'echo patch_chromium',
'&&',
'git',
'apply',
'bison/patchs/chromium.patch'
],
},
]
recursedeps = [
'src',
]