OLD | NEW |
1 # Do not add any includes under chrome/ anywhere in chromecast. | 1 # Do not add any includes under chrome/ anywhere in chromecast. |
2 | 2 |
3 include_rules = [ | 3 include_rules = [ |
4 # Chromecast code should, in general, only depend on chromecast/common unless | 4 # Chromecast code should explicitly declare its dependencies on each |
5 # a dependency is otherwise explicitly declared. | 5 # sub-directory within chromecast/. |
6 "-chromecast", | 6 "-chromecast", |
7 "+chromecast/common", | |
8 | 7 |
9 # Other Chromecast-wide dependencies. | 8 # Other Chromecast-wide dependencies. |
10 "+content/public/common", | 9 "+content/public/common", |
11 "+crypto", | 10 "+crypto", |
12 "+grit/chromecast_settings.h", | 11 "+grit/chromecast_settings.h", |
13 "+grit/shell_resources.h", | 12 "+grit/shell_resources.h", |
14 "+jni", | 13 "+jni", |
15 "+net", | 14 "+net", |
16 "+ui", | 15 "+ui", |
17 ] | 16 ] |
OLD | NEW |