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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("gpu") { | 7 source_set("gpu") { |
8 sources = [ | 8 sources = [ |
9 "gl_context.cc", | 9 "gl_context.cc", |
10 "gl_context.h", | 10 "gl_context.h", |
11 "gl_context_owner.cc", | 11 "gl_context_owner.cc", |
12 "gl_context_owner.h", | 12 "gl_context_owner.h", |
13 "gl_texture.cc", | 13 "gl_texture.cc", |
14 "gl_texture.h", | 14 "gl_texture.h", |
15 "mojo_context_support.cc", | |
16 "mojo_context_support.h", | |
17 "mojo_gles2_impl_autogen.cc", | |
18 "mojo_gles2_impl_autogen.h", | |
19 ] | 15 ] |
20 | 16 |
21 public_deps = [ | 17 public_deps = [ |
22 "//mojo/public/c/gpu", | 18 "//mojo/public/c/gpu", |
23 ] | 19 ] |
24 | 20 |
25 deps = [ | 21 deps = [ |
26 "//base", | 22 "//base", |
27 "//gpu/command_buffer/client:gles2_interface", | |
28 "//gpu/command_buffer/common", | |
29 "//mojo/environment:chromium", | 23 "//mojo/environment:chromium", |
| 24 "//mojo/public/c/gpu", |
30 "//mojo/public/c/gpu:gpu_onscreen", | 25 "//mojo/public/c/gpu:gpu_onscreen", |
31 "//mojo/public/c/system", | 26 "//mojo/public/c/system", |
32 "//mojo/public/cpp/application", | 27 "//mojo/public/cpp/application", |
33 "//mojo/public/cpp/bindings", | 28 "//mojo/public/cpp/bindings", |
34 "//mojo/public/cpp/environment", | 29 "//mojo/public/cpp/environment", |
35 "//mojo/public/cpp/system", | 30 "//mojo/public/cpp/system", |
36 "//mojo/public/cpp/utility", | 31 "//mojo/public/cpp/utility", |
37 "//mojo/public/interfaces/application", | 32 "//mojo/public/interfaces/application", |
38 "//mojo/services/geometry/cpp", | 33 "//mojo/services/geometry/cpp", |
39 "//mojo/services/geometry/interfaces", | 34 "//mojo/services/geometry/interfaces", |
40 "//mojo/services/gpu/interfaces", | 35 "//mojo/services/gpu/interfaces", |
41 ] | 36 ] |
42 } | 37 } |
OLD | NEW |