forked from crosswalk-project/crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS
46 lines (40 loc) · 906 Bytes
/
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
include_rules = [
"+content/public",
"+crypto",
"+net",
"+sandbox",
"+skia",
"+ui",
"+v8",
"+webkit",
# Allow inclusion of third-party code.
"+third_party/skia",
"+third_party/WebKit/public/platform",
"+third_party/WebKit/public/web",
# Files generated during Crosswalk build.
"+grit/xwalk_resources.h",
]
vars = {
}
deps = {
}
hooks = [
{
# Generate .gclient-xwalk for Crosswalk's dependencies.
"name": "generate-gclient-xwalk",
"pattern": ".",
"action": ["python", "src/xwalk/tools/generate_gclient-xwalk.py"],
},
{
# Fetch Crosswalk dependencies.
"name": "fetch-deps",
"pattern": ".",
"action": ["python", "src/xwalk/tools/fetch_deps.py", "-v"],
},
{
# A change to a .gyp, .gypi, or to GYP itself should run the generator.
"name": "gyp-xwalk",
"pattern": ".",
"action": ["python", "src/xwalk/gyp_xwalk"],
}
]