OLD | NEW |
---|---|
1 include_rules = [ | 1 include_rules = [ |
2 "+content/public/common", | 2 "+content/public/common", |
3 # Allow inclusion of WebKit API files. | 3 # Allow inclusion of WebKit API files. |
4 "+third_party/WebKit/public/platform", | 4 "+third_party/WebKit/public/platform", |
5 "+third_party/WebKit/public/web", | 5 "+third_party/WebKit/public/web", |
6 ] | 6 ] |
7 | |
8 specific_include_rules = { | |
9 '.*_[a-z]*test\.cc': [ | |
Ilya Sherman
2013/08/30 21:55:47
Could you narrow this rule to allow only the speci
blundell
2013/09/02 10:52:56
This is the DEPS file for //components/autofill/co
Ilya Sherman
2013/09/03 22:39:18
Ah, I mistook this for a temporary exception. Nev
| |
10 "+content/public/test", | |
11 ], | |
12 } | |
OLD | NEW |