DEPS 913 B

123456789101112131415161718192021222324252627282930
  1. # PartitionAlloc is planned to be extracted into a standalone library, and
  2. # therefore dependencies need to be strictly controlled and minimized.
  3. noparent = True
  4. include_rules = [
  5. "+build/build_config.h",
  6. "+build/buildflag.h",
  7. "+third_party/lss/linux_syscall_support.h",
  8. ]
  9. specific_include_rules = {
  10. ".*_(perf|unit)test\.cc$": [
  11. "+base/allocator/allocator_shim_default_dispatch_to_partition_alloc.h",
  12. "+base/debug/proc_maps_linux.h",
  13. "+base/system/sys_info.h",
  14. "+base/test/gtest_util.h",
  15. "+base/timer/lap_timer.h",
  16. "+base/win/windows_version.h",
  17. "+testing/gmock/include/gmock/gmock.h",
  18. "+testing/gtest/include/gtest/gtest.h",
  19. "+testing/perf/perf_result_reporter.h",
  20. ],
  21. "extended_api\.cc$": [
  22. "+base/allocator/allocator_shim_default_dispatch_to_partition_alloc.h",
  23. ],
  24. "gtest_prod_util\.h$": [
  25. "+testing/gtest/include/gtest/gtest_prod.h",
  26. ],
  27. }