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 static_library("skia") { | 5 static_library("skia") { |
6 sources = [ | 6 sources = [ |
7 "ganesh_context.cc", | 7 "ganesh_context.cc", |
8 "ganesh_context.h", | 8 "ganesh_context.h", |
9 "ganesh_surface.cc", | 9 "ganesh_framebuffer_surface.cc", |
10 "ganesh_surface.h", | 10 "ganesh_framebuffer_surface.h", |
| 11 "ganesh_texture_surface.cc", |
| 12 "ganesh_texture_surface.h", |
11 ] | 13 ] |
12 | 14 |
13 deps = [ | 15 deps = [ |
14 "//base", | 16 "//base", |
15 "//gpu/command_buffer/client:gles2_c_lib", | 17 "//gpu/command_buffer/client:gles2_c_lib", |
16 "//gpu/skia_bindings", | 18 "//gpu/skia_bindings", |
17 "//mojo/gpu", | 19 "//mojo/gpu", |
18 "//skia", | 20 "//skia", |
19 ] | 21 ] |
20 } | 22 } |
OLD | NEW |