OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # The subdirectories in ios/ will manually allow their own include | 2 # The subdirectories in ios/ will manually allow their own include |
3 # directories in ios/ so we disallow all of them. | 3 # directories in ios/ so we disallow all of them. |
4 "-ios", | 4 "-ios", |
5 | 5 |
| 6 # To avoid ODR violation, direct import of ios/third_party/ochamcrest |
| 7 # is forbidden in ios/DEPS and code should instead use import as if |
| 8 # OCHamcrest was in a framework (i.e. #import <OCHamcrest/OCHamcrest.h>). |
| 9 "-ios/third_party/ochamcrest", |
| 10 |
6 # For unit tests. | 11 # For unit tests. |
7 "+third_party/ocmock", | 12 "+third_party/ocmock", |
8 ] | 13 ] |
OLD | NEW |