forked from mogoweb/chromium_webview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS
52 lines (46 loc) · 1.09 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
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-mogo for ChromeView's dependencies.
"name": "generate-gclient-mogo",
"pattern": ".",
"action": ["python", "src/chromeview/tools/generate_gclient-mogo.py"],
},
{
# Fetch ChromeView dependencies.
"name": "fetch-deps",
"pattern": ".",
"action": ["python", "src/chromeview/tools/fetch_deps.py", "-v"],
},
#{
# # Apply patches.
# "name": "patcher",
# "pattern": ".",
# "action": ["python", "src/chromeview/tools/patcher.py", "--patch-config", "src/chromeview/patch/patch.cfg"],
#},
#{
# # A change to a .gyp, .gypi, or to GYP itself should run the generator.
# "name": "gyp-mogo",
# "pattern": ".",
# "action": ["python", "src/chromeview/gyp_mogo"],
#}
]