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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
include_rules = [
"+apps",
"+breakpad",
"+chrome/app",
"+chrome/installer",
"+chrome/tools/profiles", # For history unit tests.
"+chromeos",
"+components/autofill/browser",
"+components/autofill/common",
"+components/auto_login_parser",
"+components/autofill/common",
"+components/navigation_interception",
"+components/user_prefs",
"+components/visitedlink/browser",
"+components/webdata",
"+components/web_contents_delegate_android",
"+components/web_modal",
"+content/public/browser",
"+device/bluetooth",
"+device/media_transfer_protocol",
"+extensions/browser",
"+extensions/common",
"+google/cacheinvalidation", # Sync invalidation API protobuf files.
"+google_apis",
"+google_update",
"+grit", # For generated headers
"+installer_util_strings", # For generated headers
"+media/base", # For media switches
"+policy", # For generated headers and source
"+ppapi/c", # For various types.
"+ppapi/host",
"+ppapi/proxy",
"+ppapi/shared_impl/api_id.h",
# Defines some types that are marshalled over IPC.
"+ppapi/shared_impl/ppp_flash_browser_operations_shared.h",
"+rlz",
"+sandbox/linux",
"+sandbox/win/src", # The path doesn't say it, but this is the Windows sandbox.
"+skia/ext",
"+skia/include",
"+sync/api", # Sync API files.
"+sync/notifier", # Sync invalidation API files.
"+sync/protocol", # Sync protobuf files.
"+third_party/cros_system_api",
"+win8/util",
"+xib_localizers", # For generated mac localization helpers
# TODO(stuartmorgan): Remove these by refactoring necessary code out of
# webkit/. See crbug.com/146251
# DO NOT ADD ANY MORE ITEMS TO THE LIST BELOW!
"+webkit/appcache",
"+webkit/base/origin_url_conversions.h",
"+webkit/blob",
"+webkit/database",
"+webkit/dom_storage/dom_storage_types.h",
"+webkit/fileapi",
"+webkit/plugins", # Defines some types that are marshalled over IPC.
"+webkit/quota",
"+webkit/user_agent",
# TODO(kinuko): Remove all other webkit/* dependencies after we cleaned
# up webkit/. crbug.com/239710
"+webkit/browser",
# webkit/glue files are listed individually since they aren't conceptually
# grouped like the other webkit/ files, and can therefore be tackled one at
# a time.
"+webkit/glue/glue_serialize.h",
"+webkit/glue/image_decoder.h",
"+webkit/glue/resource_type.h",
"+webkit/glue/webcursor.h",
"+webkit/glue/webdropdata.h",
"+webkit/glue/webkit_glue.h",
"+webkit/glue/webmenuitem.h",
"+webkit/glue/webpreferences.h",
# DO NOT ADD ANY MORE ITEMS TO THE ABOVE LIST!
"-chrome/browser/ui/views",
# TODO(tfarina): Remove all these. crbug.com/125846.
# DO NOT ADD ANY MORE ITEMS TO THE LIST BELOW!
"!chrome/browser/ui/views/extensions/extension_view_views.h",
"!chrome/browser/ui/views/location_bar/location_bar_view.h",
"!chrome/browser/ui/views/location_bar/location_icon_view.h",
"!chrome/browser/ui/views/notifications/balloon_view_host.h",
"!chrome/browser/ui/views/reload_button.h",
"!chrome/browser/ui/views/select_file_dialog_extension.h",
# DO NOT ADD ANY MORE ITEMS TO THE ABOVE LIST!
# Other libraries.
"+chrome/third_party/mozilla_security_manager",
"+libxml", # For search engine definition parsing.
"+third_party/apple_sample_code", # Apple code ImageAndTextCell.
"+third_party/bzip2",
"+third_party/cld",
"+third_party/expat",
"+third_party/iaccessible2",
"+third_party/icu",
"+third_party/isimpledom",
"+third_party/leveldatabase",
"+third_party/libevent", # For the remote V8 debugging server
"+third_party/libjingle",
"+third_party/protobuf/src/google/protobuf",
"+third_party/re2",
"+third_party/sqlite",
"+third_party/undoview",
]
|