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 |
| 5 # a dependency is otherwise explicitly declared. |
| 6 "-chromecast", |
| 7 "+chromecast/common", |
| 8 |
| 9 # Other Chromecast-wide dependencies. |
4 "+content/public/common", | 10 "+content/public/common", |
5 "+crypto", | 11 "+crypto", |
6 "+grit/chromecast_settings.h", | 12 "+grit/chromecast_settings.h", |
7 "+grit/shell_resources.h", | 13 "+grit/shell_resources.h", |
8 "+jni", | 14 "+jni", |
9 "+net", | 15 "+net", |
10 "+ui", | 16 "+ui", |
11 ] | 17 ] |
OLD | NEW |