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/gfx", | 5 "+ui/gfx", |
6 "+ui/ozone/gpu", | |
spang
2015/02/19 00:49:26
Seems to be a cyclic dependency here.
achaulk
2015/02/19 00:54:51
Ah, I'll pull in the bits of code I need, it's rea
| |
6 "+ui/ozone/public", | 7 "+ui/ozone/public", |
7 ] | 8 ] |
8 | 9 |
9 specific_include_rules = { | 10 specific_include_rules = { |
10 # This is the only target that should use the osmesa.h header. Everything else | 11 # 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 | 12 # should use the GLES2 headers from third_party/khronos/ or use gl_bindings.h to |
12 # get access to desktop OpenGL. | 13 # get access to desktop OpenGL. |
13 "gl_surface_osmesa.cc": [ | 14 "gl_surface_osmesa.cc": [ |
14 "+third_party/mesa/src/include/GL/osmesa.h", | 15 "+third_party/mesa/src/include/GL/osmesa.h", |
15 ] | 16 ] |
16 } | 17 } |
OLD | NEW |