1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
include_rules = [
"+third_party/smhasher",
]
# These are browser tests which run in single process mode, and so access both
# code from the browser and the renderer.
specific_include_rules = {
"phishing_classifier_delegate_browsertest\.cc": [
"+chrome/browser/ui/browser.h",
"+chrome/browser/ui/browser_commands.h",
"+chrome/browser/ui/tabs/tab_strip_model.h",
"+content/public/browser/browser_message_filter.h",
"+content/public/browser/browser_thread.h",
"+content/public/browser/render_process_host.h",
"+content/public/browser/web_contents.h",
],
"phishing_dom_feature_extractor_browsertest\.cc": [
"+chrome/browser/ui/browser.h",
"+chrome/browser/ui/tabs/tab_strip_model.h",
"+content/public/browser/browser_thread.h",
"+content/public/browser/interstitial_page.h",
"+content/public/browser/web_contents.h",
],
}
|