Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1190)

Side by Side Diff: webkit/DEPS

Issue 106623003: Update dependencies to use new angle repository. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # checkdeps.py shouldn't check include paths for files in these dirs: 1 # checkdeps.py shouldn't check include paths for files in these dirs:
2 skip_child_includes = [ 2 skip_child_includes = [
3 "build", 3 "build",
4 ] 4 ]
5 5
6 # Do NOT add chrome to the list below. We shouldn't be including files from 6 # Do NOT add chrome to the list below. We shouldn't be including files from
7 # src/chrome in src/webkit. 7 # src/chrome in src/webkit.
8 include_rules = [ 8 include_rules = [
9 # For bridge/c/c_utility.h in npruntime_util.cc 9 # For bridge/c/c_utility.h in npruntime_util.cc
10 "+bridge", 10 "+bridge",
11 "+cc", 11 "+cc",
12 "+grit", # For generated headers 12 "+grit", # For generated headers
13 "+skia", 13 "+skia",
14 "+third_party/angle_dx11", 14 "+third_party/angle",
15 "+third_party/hyphen", 15 "+third_party/hyphen",
16 "+third_party/leveldatabase", 16 "+third_party/leveldatabase",
17 "+third_party/skia", 17 "+third_party/skia",
18 "+third_party/sqlite", 18 "+third_party/sqlite",
19 "+third_party/tcmalloc", 19 "+third_party/tcmalloc",
20 "+third_party/WebKit/public/platform", 20 "+third_party/WebKit/public/platform",
21 "+third_party/WebKit/public/web", 21 "+third_party/WebKit/public/web",
22 "+v8", 22 "+v8",
23 23
24 # For databases/ 24 # For databases/
25 "+sql", 25 "+sql",
26 26
27 # For gpu/ 27 # For gpu/
28 "+ui/gfx", 28 "+ui/gfx",
29 "+ui/gl", 29 "+ui/gl",
30 "+gpu/command_buffer/client", 30 "+gpu/command_buffer/client",
31 "+gpu/command_buffer/common", 31 "+gpu/command_buffer/common",
32 "+gpu/command_buffer/service", 32 "+gpu/command_buffer/service",
33 "+gpu/GLES2", 33 "+gpu/GLES2",
34 "+third_party/khronos/GLES2", 34 "+third_party/khronos/GLES2",
35 35
36 # TODO(brettw) - review these; move up if it's ok, or remove the dependency 36 # TODO(brettw) - review these; move up if it's ok, or remove the dependency
37 "+net", 37 "+net",
38 "+third_party/npapi/bindings", 38 "+third_party/npapi/bindings",
39 39
40 # webkit/support is only test support code, nothing outside of webkit/support 40 # webkit/support is only test support code, nothing outside of webkit/support
41 # should pull it in. 41 # should pull it in.
42 "-webkit/support", 42 "-webkit/support",
43 ] 43 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698