DEPS 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # ppapi/tests should not be dependent on other parts of chromium; it should stay
  2. # browser-neutral as much as possible.
  3. include_rules = [
  4. "-base",
  5. "-build",
  6. "-ipc",
  7. "-uncode",
  8. "-testing",
  9. "-ppapi",
  10. "+ppapi/c",
  11. "+ppapi/cpp",
  12. "+ppapi/lib",
  13. "+ppapi/tests",
  14. "+ppapi/utility",
  15. # Test to confirm whether PPB_Audio_Shared works properly in NaCl needs to
  16. # call nacl_irt_ppapihook internally to emulate some erroneous situation.
  17. "+native_client/src/untrusted/irt/irt.h",
  18. "+ppapi/native_client/src/untrusted/irt_stub/thread_creator.h",
  19. ]
  20. # checkdeps.py shouldn't check include paths for files in clang, which aren't
  21. # part of the chrome build.
  22. skip_child_includes = [
  23. "clang",
  24. ]
  25. specific_include_rules = {
  26. # The Blink test plugins use //base.
  27. "blink_(deprecated_)?test_plugin\.cc": [
  28. "+base",
  29. ],
  30. # extensions/packaged_app/test_packaged_app.cc uses kMaxDescriptorsPerMessage
  31. # defined in ipc/ipc_message_attachment_set.h.
  32. "test_packaged_app\.cc": [
  33. "+ipc/ipc_message_attachment_set.h",
  34. ]
  35. }