OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+net", | 2 "+net", |
3 "+third_party/libwebp/webp", | 3 "+third_party/libwebp/webp", |
4 "+ui", | 4 "+ui", |
5 ] | 5 ] |
6 | 6 |
7 specific_include_rules = { | 7 specific_include_rules = { |
8 # Allow browser_thread.h and test_browser_thread.h until a web/ replacement is | 8 # Allow browser_thread.h and test_browser_thread.h until a web/ replacement is |
9 # built out. Note that headers in public/ are not subject to this exception. | 9 # built out. Note that headers in public/ are not subject to this exception. |
10 "^web_thread(\.cc|_impl\.(cc|h))$": [ | 10 "^web_thread(\.cc|_impl\.(cc|h))$": [ |
11 "+content/public/browser/browser_thread.h", | 11 "+content/public/browser/browser_thread.h", |
12 ], | 12 ], |
13 "^test_web_thread\.cc$": [ | 13 "^test_web_thread(_bundle)?\.cc$": [ |
14 "+content/public/test/test_browser_thread.h", | 14 "+content/public/test/test_browser_thread.h", |
| 15 "+content/public/test/test_browser_thread_bundle.h", |
15 ], | 16 ], |
16 } | 17 } |
OLD | NEW |