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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 component("gles2") { | 7 component("gles2") { |
8 output_name = "mojo_gles2_impl" | 8 output_name = "mojo_gles2_impl" |
9 | 9 |
10 deps = [ | 10 deps = [ |
(...skipping 11 matching lines...) Expand all Loading... |
22 if (is_component_build) { | 22 if (is_component_build) { |
23 deps += [ "//mojo/system" ] | 23 deps += [ "//mojo/system" ] |
24 } | 24 } |
25 | 25 |
26 defines = [ "MOJO_GLES2_IMPL_IMPLEMENTATION" ] | 26 defines = [ "MOJO_GLES2_IMPL_IMPLEMENTATION" ] |
27 | 27 |
28 sources = [ | 28 sources = [ |
29 "command_buffer_client_impl.cc", | 29 "command_buffer_client_impl.cc", |
30 "command_buffer_client_impl.h", | 30 "command_buffer_client_impl.h", |
31 "gles2_impl_export.h", | 31 "gles2_impl_export.h", |
32 "gles2_support_impl.cc", | 32 "gles2_impl.cc", |
33 "gles2_support_impl.h", | |
34 "gles2_context.cc", | 33 "gles2_context.cc", |
35 "gles2_context.h", | 34 "gles2_context.h", |
36 ] | 35 ] |
37 } | 36 } |
OLD | NEW |