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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 config("mojo_use_gles2") { | 8 config("mojo_use_gles2") { |
9 defines = [ "MOJO_USE_GLES2_IMPL" ] | 9 defines = [ "MOJO_USE_GLES2_IMPL" ] |
10 } | 10 } |
(...skipping 18 matching lines...) Expand all Loading... |
29 "//gpu/command_buffer/client", | 29 "//gpu/command_buffer/client", |
30 "//gpu/command_buffer/client:gles2_cmd_helper", | 30 "//gpu/command_buffer/client:gles2_cmd_helper", |
31 "//gpu/command_buffer/client:gles2_implementation", | 31 "//gpu/command_buffer/client:gles2_implementation", |
32 "//gpu/command_buffer/common", | 32 "//gpu/command_buffer/common", |
33 "//mojo/public/c/gpu:MGL", | 33 "//mojo/public/c/gpu:MGL", |
34 "//mojo/public/c/gpu:MGL_onscreen", | 34 "//mojo/public/c/gpu:MGL_onscreen", |
35 "//mojo/public/c/gpu:MGL_signal_sync_point", | 35 "//mojo/public/c/gpu:MGL_signal_sync_point", |
36 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
37 "//mojo/public/cpp/system", | 37 "//mojo/public/cpp/system", |
38 "//services/gles2:lib", | 38 "//services/gles2:lib", |
39 "//mojo/services/gpu/public/interfaces", | 39 "//mojo/services/gpu/interfaces", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 source_set("gles2") { | 43 source_set("gles2") { |
44 sources = [ | 44 sources = [ |
45 "gles2_impl.cc", | 45 "gles2_impl.cc", |
46 ] | 46 ] |
47 | 47 |
48 defines = [ | 48 defines = [ |
49 "GL_GLEXT_PROTOTYPES", | 49 "GL_GLEXT_PROTOTYPES", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "//mojo/public/c/gpu:MGL", | 92 "//mojo/public/c/gpu:MGL", |
93 "//mojo/public/c/test_support:test_support", | 93 "//mojo/public/c/test_support:test_support", |
94 "//mojo/public/cpp/environment:standalone", | 94 "//mojo/public/cpp/environment:standalone", |
95 "//testing/gtest:gtest", | 95 "//testing/gtest:gtest", |
96 ] | 96 ] |
97 | 97 |
98 sources = [ | 98 sources = [ |
99 "mgl_unittest.cc", | 99 "mgl_unittest.cc", |
100 ] | 100 ] |
101 } | 101 } |
OLD | NEW |