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 explicitly declare its dependencies on each | 4 # Chromecast code should explicitly declare its dependencies on each |
5 # sub-directory within chromecast/. | 5 # sub-directory within chromecast/. |
6 "-chromecast", | 6 "-chromecast", |
7 "+chromecast/base", | 7 "+chromecast/base", |
8 "+chromecast/public/media", | |
gunsch
2015/04/17 01:38:51
just add "+chromecast/public", any of our code sho
erickung1
2015/04/29 08:52:20
Done.
gunsch
2015/04/29 17:42:52
Not done
erickung1
2015/04/29 20:49:15
This is removed after the rebase
| |
8 | 9 |
9 # Other Chromecast-wide dependencies. | 10 # Other Chromecast-wide dependencies. |
10 "+content/public/common", | 11 "+content/public/common", |
11 "+crypto", | 12 "+crypto", |
12 "+grit/chromecast_settings.h", | 13 "+grit/chromecast_settings.h", |
13 "+grit/shell_resources.h", | 14 "+grit/shell_resources.h", |
14 "+jni", | 15 "+jni", |
15 "+net", | 16 "+net", |
16 "+ui", | 17 "+ui", |
17 ] | 18 ] |
OLD | NEW |