blob: 862c5550b64b8b7c3cf432aa941f0d236ac18ebf (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | include_rules = [
  "+third_party/khronos",
  "+third_party/skia",
  "+ui/events",
  "+ui/gfx",
  "+ui/ozone/public",
]
specific_include_rules = {
# This is the only target that should use the osmesa.h header. Everything else
# should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to
# get access to desktop OpenGL.
  "gl_surface_osmesa.cc": [
    "+third_party/mesa/src/include/GL/osmesa.h",
  ]
}
 |