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