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 |
2 # except protocol buffers. | |
2 include_rules = [ | 3 include_rules = [ |
3 "-cc", | 4 "-cc", |
4 "+cc/base", | 5 "+cc/base", |
6 "+cc/proto", | |
5 ] | 7 ] |
6 | 8 |
7 # Tests can use things in cc/test | 9 # Tests can use things in cc/test |
8 specific_include_rules = { | 10 specific_include_rules = { |
9 ".*unittest\.cc": [ | 11 ".*unittest\.cc": [ |
10 "+cc/test", | 12 "+cc/test", |
11 ] | 13 ] |
12 } | 14 } |
OLD | NEW |