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
|
include_rules = [
"+breakpad", # For Breakpad constants.
"+chrome/grit", # For generated headers
"+chromeos", # For chromeos_switches.h
"+components/autofill/content/common",
"+components/autofill/core/common",
"+components/bookmarks/common",
"+components/cloud_devices/common",
"+components/content_settings/core/common",
"+components/crx_file",
"+components/data_reduction_proxy/core/common",
"+components/dom_distiller/core",
"+components/gcm_driver",
"+components/metrics/client_info.h",
"+components/metrics/metrics_pref_names.h",
"+components/nacl/common",
"+components/password_manager/core/common",
"+components/printing/common",
"+components/policy/core/common",
"+components/signin/core/common",
"+components/translate/core/common",
"+components/version_info",
"+extensions/common",
"+gin/public", # For profiling.cc
"+google_apis/gaia", # For gaia_switches.h
"+grit", # For generated headers. TODO(thestig): Remove.
"+media",
"+ppapi/c",
"+ppapi/shared_impl",
"+ppapi/thunk",
# FIXME - refactor code and remove these dependencies
"+chrome/installer",
]
|