OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+components/url_formatter", | |
3 "+crypto", | 2 "+crypto", |
4 "+ios/public/provider/web", | 3 "+ios/public/provider/web", |
5 "+ios/net", | 4 "+ios/net", |
6 "+ios/web", | 5 "+ios/web", |
7 "+net", | 6 "+net", |
8 "+third_party/libwebp/webp", | 7 "+third_party/libwebp/webp", |
9 "+ui", | 8 "+ui", |
10 | 9 |
11 # For tests. | 10 # For tests. |
12 "+ios/testing", | 11 "+ios/testing", |
13 ] | 12 ] |
14 | 13 |
15 specific_include_rules = { | 14 specific_include_rules = { |
16 # 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 |
17 # 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. |
18 "^web_thread(\.cc|(_impl|_adapter)\.(cc|h))$": [ | 17 "^web_thread(\.cc|(_impl|_adapter)\.(cc|h))$": [ |
19 "+content/public/browser/browser_thread.h", | 18 "+content/public/browser/browser_thread.h", |
20 ], | 19 ], |
21 "^test_web_thread(_bundle)?(_adapter)?\.cc$": [ | 20 "^test_web_thread(_bundle)?(_adapter)?\.cc$": [ |
22 "+content/public/test/test_browser_thread.h", | 21 "+content/public/test/test_browser_thread.h", |
23 "+content/public/test/test_browser_thread_bundle.h", | 22 "+content/public/test/test_browser_thread_bundle.h", |
24 ], | 23 ], |
25 } | 24 } |
OLD | NEW |