OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+third_party/khronos", | 2 "+third_party/khronos", |
3 "+third_party/skia", | 3 "+third_party/skia", |
4 "+ui/events", | 4 "+ui/events", |
| 5 "+ui/base/x", |
5 "+ui/gfx", | 6 "+ui/gfx", |
6 ] | 7 ] |
7 | 8 |
8 specific_include_rules = { | 9 specific_include_rules = { |
9 # This is the only target that should use the osmesa.h header. Everything else | 10 # This is the only target that should use the osmesa.h header. Everything else |
10 # should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to | 11 # should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to |
11 # get access to desktop OpenGL. | 12 # get access to desktop OpenGL. |
12 "gl_surface_osmesa.cc": [ | 13 "gl_surface_osmesa.cc": [ |
13 "+third_party/mesa/src/include/GL/osmesa.h", | 14 "+third_party/mesa/src/include/GL/osmesa.h", |
14 ], | 15 ], |
15 # Allow us to include ANGLE's base platform implementation. | 16 # Allow us to include ANGLE's base platform implementation. |
16 "angle_platform_impl.h": [ | 17 "angle_platform_impl.h": [ |
17 "+third_party/angle/include/platform/Platform.h", | 18 "+third_party/angle/include/platform/Platform.h", |
18 ], | 19 ], |
19 } | 20 } |
OLD | NEW |