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
|
include_rules = [
"+ui",
"+base/crypto",
# Note: This directory, although within chrome/, has a DEPS file to
# ensure it does not depend on anything in chrome/ or content/.
# TODO(joi): Move to a new top-level directory (problem is it does
# not belong in any existing top-level dir).
"+chrome/common/net/google_apis/google_api_keys.h",
"+net/base",
"+net/ftp",
"+net/http",
"+net/proxy",
"+net/test",
"+net/url_request",
# Note: Only for net::EnableSSLServerSockets(), which must be called by
# at process start.
"+net/socket",
"+remoting/codec",
"+remoting/protocol",
"+remoting/jingle_glue",
"+third_party/jsoncpp",
"+third_party/modp_b64",
"+third_party/npapi",
]
|