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