OLD | NEW |
---|---|
1 # Things within cc/base should not depend on things in cc/ outside of cc/base. | 1 # Things within cc/base should not depend on things in cc/ outside of cc/base ex cept protocol buffers. |
David Trainor- moved to gerrit
2015/11/19 19:14:01
Should this wrap?
nyquist
2015/11/20 01:11:43
Done.
| |
2 include_rules = [ | 2 include_rules = [ |
3 "-cc", | 3 "-cc", |
4 "+cc/base", | 4 "+cc/base", |
5 "+cc/proto", | |
5 ] | 6 ] |
6 | 7 |
7 # Tests can use things in cc/test | 8 # Tests can use things in cc/test |
8 specific_include_rules = { | 9 specific_include_rules = { |
9 ".*unittest\.cc": [ | 10 ".*unittest\.cc": [ |
10 "+cc/test", | 11 "+cc/test", |
11 ] | 12 ] |
12 } | 13 } |
OLD | NEW |