OLD | NEW |
---|---|
1 include_rules = [ | 1 include_rules = [ |
2 # Allow inclusion of specific components that we depend on. We may only | 2 # Allow inclusion of specific components that we depend on. We may only |
3 # depend on components which we share with the mojo html_viewer. | 3 # depend on components which we share with the mojo html_viewer. |
4 "+components/scheduler", | 4 "+components/scheduler", |
5 "+components/url_formatter", | 5 "+components/url_formatter", |
6 | 6 |
7 "+cc/blink", | 7 "+cc/blink", |
8 "+content/public/child", | 8 "+content/public/child", |
9 "+content/public/renderer", | 9 "+content/public/renderer", |
10 "+content/child", | 10 "+content/child", |
(...skipping 10 matching lines...) Expand all Loading... | |
21 "+third_party/tcmalloc", | 21 "+third_party/tcmalloc", |
22 "+v8/include", | 22 "+v8/include", |
23 "+v8/src/third_party/vtune", | 23 "+v8/src/third_party/vtune", |
24 ] | 24 ] |
25 | 25 |
26 specific_include_rules = { | 26 specific_include_rules = { |
27 '.*_[a-z]*browsertest.*': [ | 27 '.*_[a-z]*browsertest.*': [ |
28 "+content/public/browser", | 28 "+content/public/browser", |
29 "+content/shell", | 29 "+content/shell", |
30 ], | 30 ], |
31 | |
32 'render_thread_impl_browsertest.cc': [ | |
Henrik Grunell
2015/10/15 12:17:03
Why is this needed?
Anand Mistry (off Chromium)
2015/10/21 03:58:24
This specific test needs to initialise Mojo. Norma
| |
33 # Needed to set up Mojo. | |
34 "+content/app/mojo/mojo_init.h", | |
35 ], | |
31 } | 36 } |
OLD | NEW |