OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # The subdirectories in ios/chrome/ will manually allow their own include | 2 # The subdirectories in ios/chrome/ will manually allow their own include |
3 # directories in ios/chrome/ so we disallow all of them. | 3 # directories in ios/chrome/ so we disallow all of them. |
4 "-ios/chrome", | 4 "-ios/chrome", |
5 "+ios/chrome/grit", | |
6 | |
7 "+components/autofill/core/browser", | |
8 "+components/autofill/ios/browser", | |
9 "+components/data_reduction_proxy/core/common", | |
10 "+components/dom_distiller/core", | |
11 "+components/dom_distiller/ios", | |
12 "+components/infobars/core", | |
13 "+components/keyed_service/core", | |
14 "+components/keyed_service/ios", | |
15 "+components/leveldb_proto", | |
16 "+components/suggestions", | |
17 "+components/translate/core", | |
18 "+components/translate/ios", | |
19 "+components/web_resource", | |
20 "+components/webp_transcode", | |
21 "+ios/net", | |
22 "+ios/public/provider/chrome", | |
23 "+ios/web/public", | |
24 "+net", | |
25 "+third_party/google_toolbox_for_mac", | |
26 "+ui", | |
27 | |
28 # For tests. | |
29 "+ios/public/test", | |
30 | |
31 # Only parts of skia are compiled on iOS, so we explicitly list the | |
32 # files that can be included to avoid bringing in more code. | |
33 "+skia/ext/skia_utils_ios.h", | |
34 | |
35 # Generated file for translated strings in components. | |
36 "+grit/components_strings.h", | |
37 ] | 5 ] |
OLD | NEW |