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
|
include_rules = [
"-chrome",
"+chrome/test/base",
"+chrome/test/sync",
"+chrome/browser/sync/engine",
"+chrome/browser/sync/js",
"+chrome/browser/sync/notifier",
"+chrome/browser/sync/protocol",
"+chrome/browser/sync/sessions",
"+chrome/browser/sync/syncable",
"+chrome/browser/sync/util",
# this should live in base
"+chrome/browser/sync/weak_handle.h",
# unittests need this for mac osx keychain overriding
"+chrome/browser/password_manager/encryptor.h",
"+chrome/common/net/gaia/google_service_auth_error.h",
"+chrome/common/net/http_return.h",
# various command line flags
"+chrome/common/chrome_switches.h",
]
|