Home | History | Annotate | Download | only in renderer_host
      1 include_rules = [
      2   "+cc/switches.h", # For cc command line switches.
      3   "+media/base",  # For media command line switches.
      4   "+media/audio/audio_util.h",  # For audio hardware sample-rate.
      5   "+third_party/zlib",
      6   "+third_party/libyuv",
      7 
      8   # For single-process mode.
      9   "+content/renderer/render_process_impl.h",
     10   "+content/renderer/render_thread_impl.h",
     11 
     12   # The renderer_host files should only call upwards in the layering via the
     13   # delegate interfaces.
     14   "-content/browser/web_contents",
     15   "-content/public/browser/web_contents.h",
     16   "-content/public/browser/web_contents_view.h",
     17 ]
     18 
     19 specific_include_rules = {
     20   ".*_(unit|browser)test\.cc": [
     21     "+content/browser/web_contents",
     22     "+content/public/browser/web_contents.h",
     23     "+content/public/browser/web_contents_view.h",
     24     "+media/filters",
     25   ],
     26   "render_sandbox_host_linux\.cc": [
     27     "+third_party/WebKit/public/web/WebKit.h",
     28     "+third_party/WebKit/public/web/linux/WebFontInfo.h",
     29   ],
     30 }
     31