OLD | NEW |
(Empty) | |
| 1 include_rules = [ |
| 2 # First, exclude everything. |
| 3 # Exclude a few dependencies that are included in the root DEPS and that we |
| 4 # don't need. |
| 5 # Sadly, there is no way to exclude all root DEPS since the root has no name. |
| 6 "-ipc", |
| 7 "-library_loaders", |
| 8 "-third_party", |
| 9 "-url", |
| 10 # Make sure that each subdirectory has to declare its dependencies in |
| 11 # sandbox/ explicitly. |
| 12 "-sandbox/linux", |
| 13 |
| 14 # Second, add what we want to allow. |
| 15 # Anything included from sandbox/linux must be declared after this line or in |
| 16 # a more specific DEPS file. |
| 17 # base/, build/ and testing/ are already included in the global DEPS file, |
| 18 # but be explicit. |
| 19 "+base", |
| 20 "+build", |
| 21 "+testing", |
| 22 "+sandbox/sandbox_export.h", |
| 23 # Everyone can use tests/ |
| 24 "+sandbox/linux/tests", |
| 25 ] |
OLD | NEW |