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 assert(!defined(is_nacl) || !is_nacl) | 5 assert(!defined(is_nacl) || !is_nacl) |
6 | 6 |
7 import("../../mojo_sdk.gni") | 7 import("../../mojo_sdk.gni") |
8 | 8 |
9 mojo_sdk_source_set("system") { | 9 mojo_sdk_source_set("system") { |
10 sources = [ | 10 sources = [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "gles2_impl_chromium_sync_point_thunks.c", | 73 "gles2_impl_chromium_sync_point_thunks.c", |
74 "gles2_impl_chromium_sync_point_thunks.h", | 74 "gles2_impl_chromium_sync_point_thunks.h", |
75 "gles2_impl_chromium_texture_mailbox_thunks.c", | 75 "gles2_impl_chromium_texture_mailbox_thunks.c", |
76 "gles2_impl_chromium_texture_mailbox_thunks.h", | 76 "gles2_impl_chromium_texture_mailbox_thunks.h", |
77 "gles2_impl_ext_debug_marker_thunks.c", | 77 "gles2_impl_ext_debug_marker_thunks.c", |
78 "gles2_impl_ext_debug_marker_thunks.h", | 78 "gles2_impl_ext_debug_marker_thunks.h", |
79 "gles2_impl_ext_discard_framebuffer_thunks.c", | 79 "gles2_impl_ext_discard_framebuffer_thunks.c", |
80 "gles2_impl_ext_discard_framebuffer_thunks.h", | 80 "gles2_impl_ext_discard_framebuffer_thunks.h", |
81 "gles2_impl_ext_multisampled_render_to_texture_thunks.c", | 81 "gles2_impl_ext_multisampled_render_to_texture_thunks.c", |
82 "gles2_impl_ext_multisampled_render_to_texture_thunks.h", | 82 "gles2_impl_ext_multisampled_render_to_texture_thunks.h", |
| 83 "gles2_impl_ext_occlusion_query_thunks.c", |
| 84 "gles2_impl_ext_occlusion_query_thunks.h", |
83 "gles2_impl_ext_texture_storage_thunks.c", | 85 "gles2_impl_ext_texture_storage_thunks.c", |
84 "gles2_impl_ext_texture_storage_thunks.h", | 86 "gles2_impl_ext_texture_storage_thunks.h", |
85 "gles2_impl_khr_blend_equation_advanced_thunks.c", | 87 "gles2_impl_khr_blend_equation_advanced_thunks.c", |
86 "gles2_impl_khr_blend_equation_advanced_thunks.h", | 88 "gles2_impl_khr_blend_equation_advanced_thunks.h", |
87 "gles2_impl_occlusion_query_ext_thunks.c", | |
88 "gles2_impl_occlusion_query_ext_thunks.h", | |
89 "gles2_impl_oes_vertex_array_object_thunks.c", | 89 "gles2_impl_oes_vertex_array_object_thunks.c", |
90 "gles2_impl_oes_vertex_array_object_thunks.h", | 90 "gles2_impl_oes_vertex_array_object_thunks.h", |
91 "gles2_impl_thunks.c", | 91 "gles2_impl_thunks.c", |
92 "gles2_impl_thunks.h", | 92 "gles2_impl_thunks.h", |
93 ] | 93 ] |
94 | 94 |
95 defines = [ "MOJO_GLES2_IMPLEMENTATION" ] | 95 defines = [ "MOJO_GLES2_IMPLEMENTATION" ] |
96 | 96 |
97 configs = [ "../../c/gpu:gpu_configs" ] | 97 configs = [ "../../c/gpu:gpu_configs" ] |
98 | 98 |
(...skipping 23 matching lines...) Expand all Loading... |
122 } | 122 } |
123 | 123 |
124 mojo_sdk_source_set("mgl_onscreen_thunks") { | 124 mojo_sdk_source_set("mgl_onscreen_thunks") { |
125 sources = [ | 125 sources = [ |
126 "mgl_onscreen_thunks.c", | 126 "mgl_onscreen_thunks.c", |
127 "mgl_onscreen_thunks.h", | 127 "mgl_onscreen_thunks.h", |
128 ] | 128 ] |
129 | 129 |
130 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] | 130 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] |
131 } | 131 } |
OLD | NEW |