forked from crosswalk-project/crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS.xwalk
112 lines (100 loc) · 4.12 KB
/
DEPS.xwalk
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Source code dependencies required for building Crosswalk.
#
# This file is used as a template to generate .gclient-xwalk, which is a
# regular .gclient file pointing to additional source code repositories that
# need to be checked out in order to build Crosswalk.
#
# These dependencies are not specified in DEPS for historical compatibility
# reasons and also to allow us to perform some additional manipulation on some
# entries (such as setting a custom value for "deps_file" in certain
# solutions).
#
# If you are doing a DEPS roll, you should only need to worry about the *_rev
# variables below.
# -----------------------------------
# Crosswalk dependencies.
# Edit these when rolling DEPS.xwalk.
# -----------------------------------
chromium_crosswalk_rev = 'e23bfe20113b2ddeeb06ca75bfca263ab4336131'
blink_crosswalk_rev = '16d1b69626699e9ca703e0c24c829e96d07fcd3e'
v8_crosswalk_rev = '335bf02c0a6b9b0a2bd506d877e346e5c32e40cb'
ozone_wayland_rev = 'd6ad1b8bb4e2c71427283ffc21ac8d66cb576730'
crosswalk_git = 'https://github.com/crosswalk-project'
ozone_wayland_git = 'https://github.com/01org'
# ------------------------------------------------------
# gclient solutions.
# You do not need to worry about these most of the time.
# ------------------------------------------------------
solutions = [
{ 'name': 'src',
'url': crosswalk_git + '/chromium-crosswalk.git@' + chromium_crosswalk_rev,
'deps_file': '.DEPS.git',
'custom_deps': {
'src':
crosswalk_git + '/chromium-crosswalk.git@' + chromium_crosswalk_rev,
'src/third_party/WebKit':
crosswalk_git + '/blink-crosswalk.git@' + blink_crosswalk_rev,
'src/v8':
crosswalk_git + '/v8-crosswalk.git@' + v8_crosswalk_rev,
# Temporary roll GYP forward so we can have support to compile managed code on Windows.
'src/tools/gyp':
'https://chromium.googlesource.com/external/gyp.git@1f374df95de1c0a125485496e8d23d36303a93fd',
# Include OpenCL header files for WebCL support, target version 1.2.
'src/third_party/khronos/CL':
crosswalk_git + '/khronos-cl-api-1.2.git@6f4be98d10f03ce2b12c769cd9835c73a441c00f',
# These directories are not relevant to Crosswalk and can be safely ignored
# in a checkout. It avoids creating additional directories outside src/ that
# are not used and also saves some bandwidth.
'build': None,
'build/scripts/command_wrapper/bin': None,
'build/scripts/gsd_generate_index': None,
'build/scripts/private/data/reliability': None,
'build/scripts/tools/deps2git': None,
'build/third_party/cbuildbot_chromite': None,
'build/third_party/gsutil': None,
'build/third_party/lighttpd': None,
'build/third_party/swarm_client': None,
'build/third_party/xvfb': None,
'build/xvfb': None,
'commit-queue': None,
'depot_tools': None,
'src/chrome/tools/test/reference_build/chrome_linux': None,
'src/chrome/tools/test/reference_build/chrome_mac': None,
'src/chrome/tools/test/reference_build/chrome_win': None,
},
'custom_hooks': [
# Disable Chromium's "gyp" hooks, which runs the gyp_chromium script. We
# are not interested in running it as we use gyp_xwalk instead (and it is
# run at a later stage as a hook in Crosswalk's own DEPS).
{
'name': 'gyp',
},
],
},
# ozone-wayland is set as a separate solution because we gclient _not_ to read
# its .DEPS.git: it changes the recursion limit and tries to check Chromium
# upstream out itself, leading to URL conflicts and errors about duplicate
# entries.
{ 'name': 'src/ozone',
'url': ozone_wayland_git + '/ozone-wayland.git@' + ozone_wayland_rev,
'deps_file': '',
}
]
hooks = [
{
'action': [
'python',
'src/build/util/lastchange.py',
'--git-svn-go-deeper',
'--source-dir',
'src/third_party/WebKit',
'--output',
'src/xwalk/build/UPSTREAM.blink'
],
'pattern': '.',
'name': 'upstream_revision'
},
]
# -------------------------------------------------
# This area is edited by generate_gclient-xwalk.py.
# -------------------------------------------------