| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # net/ includes should be allowed only in a limited set of directories, | 2 # net/ includes should be allowed only in a limited set of directories, |
| 3 # so we have separate DEPS from platform's one. | 3 # so we have separate DEPS from platform's one. |
| 4 "+net/base", | 4 "+net/base", |
| 5 |
| 6 # weborigin sits below platform in the layer tree, so can't include headers |
| 7 # from it. The exception is RuntimeEnabledFeatures which is its own |
| 8 # component. |
| 9 "-platform", |
| 10 "-public/platform", |
| 11 "+platform/weborigin", |
| 12 "+platform/RuntimeEnabledFeatures.h", |
| 5 ] | 13 ] |
| 14 |
| 15 specific_include_rules = { |
| 16 ".*Test\.cpp": [ |
| 17 "+platform", |
| 18 ] |
| 19 } |
| OLD | NEW |