| 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/base", | |
| 5 "+ui/events", | 4 "+ui/events", |
| 6 "+ui/gfx", | 5 "+ui/gfx", |
| 7 ] | 6 ] |
| 8 | 7 |
| 9 specific_include_rules = { | 8 specific_include_rules = { |
| 10 # This is the only target that should use the osmesa.h header. Everything else | 9 # This is the only target that should use the osmesa.h header. Everything else |
| 11 # should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to | 10 # should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to |
| 12 # get access to desktop OpenGL. | 11 # get access to desktop OpenGL. |
| 13 "gl_surface_osmesa.cc": [ | 12 "gl_surface_osmesa.cc": [ |
| 14 "+third_party/mesa/src/include/GL/osmesa.h", | 13 "+third_party/mesa/src/include/GL/osmesa.h", |
| 15 ], | 14 ], |
| 16 # Allow us to include ANGLE's base platform implementation. | 15 # Allow us to include ANGLE's base platform implementation. |
| 17 "angle_platform_impl.h": [ | 16 "angle_platform_impl.h": [ |
| 18 "+third_party/angle/include/platform/Platform.h", | 17 "+third_party/angle/include/platform/Platform.h", |
| 19 ], | 18 ], |
| 20 "gl_image_ozone_native_pixmap_drm_unittest.cc": [ | 19 "gl_image_ozone_native_pixmap_drm_unittest.cc": [ |
| 21 "+ui/ozone/gl", | 20 "+ui/ozone/gl", |
| 22 "+ui/ozone/public", | 21 "+ui/ozone/public", |
| 23 ], | 22 ], |
| 24 "gl_image_ozone_native_pixmap_unittest.cc": [ | 23 "gl_image_ozone_native_pixmap_unittest.cc": [ |
| 25 "+ui/ozone/gl", | 24 "+ui/ozone/gl", |
| 26 "+ui/ozone/public", | 25 "+ui/ozone/public", |
| 27 ], | 26 ], |
| 28 } | 27 } |
| OLD | NEW |