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
|
include_rules = [
"-chrome",
"-content",
"+chrome/browser/google_apis",
# Temporarily needed, see http://crbug.com/146989
"!chrome/browser/chromeos/login/user_manager.h",
"!chrome/browser/profiles/profile.h",
"!chrome/browser/signin/token_service_factory.h",
"!chrome/browser/signin/token_service.h",
"!chrome/common/chrome_notification_types.h",
"!content/public/browser/browser_thread.h",
"!content/public/browser/notification_details.h",
"!content/public/browser/notification_observer.h",
"!content/public/browser/notification_registrar.h",
"!content/public/browser/notification_source.h",
"!content/public/browser/notification_types.h",
]
specific_include_rules = {
".*_[a-z]+test\.cc": [
# Temporarily needed, see http://crbug.com/146989
"!chrome/browser/chromeos/system/timezone_settings.h",
"!chrome/test/base/testing_browser_process.h",
"!chrome/test/base/testing_profile.h",
"!content/public/test/test_browser_thread.h",
"!content/public/test/test_utils.h",
],
"drive_uploader.cc": [
"!content/public/browser/power_save_blocker.h",
],
"http_server.cc": [
"!content/public/test/test_utils.h",
],
}
|