OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # web interfaces cannot depend on private web code. | 2 # web interfaces cannot depend on private web code. |
3 "-ios/web", | 3 "-ios/web", |
4 "+ios/web/public", | 4 "+ios/web/public", |
5 ] | 5 ] |
6 | 6 |
7 specific_include_rules = { | 7 specific_include_rules = { |
8 # Implementations of public web interfaces can depend on private web code. | 8 # Implementations of public web interfaces can depend on private web code. |
9 "^.*\.(cc|mm)$": [ | 9 "^.*\.(cc|mm)$": [ |
10 "+ios/web", | 10 "+ios/web", |
11 ], | 11 ], |
12 # Public headers are forbidden from using any content, even if it's currently | 12 # Public headers are forbidden from using any content, even if it's currently |
13 # allowed in the web implementation. | 13 # allowed in the web implementation. |
14 "^.*\.h$": [ | 14 "^.*\.h$": [ |
15 "-content", | 15 "-content", |
16 ], | 16 ], |
17 # TODO(eugenebut): make web_view_util.h public. | |
18 "web_test_util": [ | |
19 "+ios/web/web_view_util.h", | |
20 ], | |
21 } | 17 } |
OLD | NEW |