OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("skia") { | 5 source_set("skia") { |
6 sources = [ | 6 sources = [ |
7 "ganesh_context.cc", | 7 "ganesh_context.cc", |
8 "ganesh_context.h", | 8 "ganesh_context.h", |
9 "ganesh_framebuffer_surface.cc", | 9 "ganesh_framebuffer_surface.cc", |
10 "ganesh_framebuffer_surface.h", | 10 "ganesh_framebuffer_surface.h", |
| 11 "ganesh_image_factory.cc", |
| 12 "ganesh_image_factory.h", |
11 "ganesh_texture_surface.cc", | 13 "ganesh_texture_surface.cc", |
12 "ganesh_texture_surface.h", | 14 "ganesh_texture_surface.h", |
| 15 "type_converters.cc", |
| 16 "type_converters.h", |
13 ] | 17 ] |
14 | 18 |
15 deps = [ | 19 deps = [ |
16 ":skia_bindings", | 20 ":skia_bindings", |
17 "//base", | 21 "//base", |
18 "//mojo/gpu", | 22 "//mojo/gpu", |
19 "//mojo/public/c/gpu", | 23 "//mojo/public/c/gpu", |
20 "//mojo/public/c/gpu:MGL", | 24 "//mojo/public/c/gpu:MGL", |
| 25 "//mojo/services/geometry/interfaces", |
21 "//skia", | 26 "//skia", |
22 ] | 27 ] |
23 } | 28 } |
24 | 29 |
25 source_set("skia_bindings") { | 30 source_set("skia_bindings") { |
26 sources = [ | 31 sources = [ |
27 "gl_bindings_skia.cc", | 32 "gl_bindings_skia.cc", |
28 "gl_bindings_skia.h", | 33 "gl_bindings_skia.h", |
29 ] | 34 ] |
30 deps = [ | 35 deps = [ |
31 "//mojo/public/c/gpu", | 36 "//mojo/public/c/gpu", |
32 "//mojo/public/c/gpu:GLES2", | 37 "//mojo/public/c/gpu:GLES2", |
33 "//skia", | 38 "//skia", |
34 ] | 39 ] |
35 } | 40 } |
OLD | NEW |