DEPS 837 B

1234567891011121314151617181920212223242526
  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. # Second, add what we want to allow.
  14. # Anything included from sandbox/linux must be declared after this line or in
  15. # a more specific DEPS file.
  16. # base/, build/, testing/, and optional.h are already included in the global
  17. # DEPS file, but be explicit.
  18. "+base",
  19. "+build",
  20. "+testing",
  21. "+sandbox/sandbox_export.h",
  22. # Everyone can use tests/
  23. "+sandbox/linux/tests",
  24. '+third_party/abseil-cpp/absl/types/optional.h',
  25. ]