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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 mojo_sdk_deps = [ "mojo/public/c/system" ] | 60 mojo_sdk_deps = [ "mojo/public/c/system" ] |
61 } | 61 } |
62 | 62 |
63 mojo_sdk_source_set("gles2") { | 63 mojo_sdk_source_set("gles2") { |
64 sources = [ | 64 sources = [ |
65 "gles2_impl_chromium_bind_uniform_location_thunks.cc", | 65 "gles2_impl_chromium_bind_uniform_location_thunks.cc", |
66 "gles2_impl_chromium_bind_uniform_location_thunks.h", | 66 "gles2_impl_chromium_bind_uniform_location_thunks.h", |
67 "gles2_impl_chromium_copy_texture_thunks.cc", | 67 "gles2_impl_chromium_copy_texture_thunks.cc", |
68 "gles2_impl_chromium_copy_texture_thunks.h", | 68 "gles2_impl_chromium_copy_texture_thunks.h", |
| 69 "gles2_impl_chromium_framebuffer_multisample_thunks.cc", |
| 70 "gles2_impl_chromium_framebuffer_multisample_thunks.h", |
69 "gles2_impl_chromium_image_thunks.cc", | 71 "gles2_impl_chromium_image_thunks.cc", |
70 "gles2_impl_chromium_image_thunks.h", | 72 "gles2_impl_chromium_image_thunks.h", |
71 "gles2_impl_chromium_miscellaneous_thunks.cc", | 73 "gles2_impl_chromium_miscellaneous_thunks.cc", |
72 "gles2_impl_chromium_miscellaneous_thunks.h", | 74 "gles2_impl_chromium_miscellaneous_thunks.h", |
73 "gles2_impl_chromium_pixel_transfer_buffer_object_thunks.cc", | 75 "gles2_impl_chromium_pixel_transfer_buffer_object_thunks.cc", |
74 "gles2_impl_chromium_pixel_transfer_buffer_object_thunks.h", | 76 "gles2_impl_chromium_pixel_transfer_buffer_object_thunks.h", |
75 "gles2_impl_chromium_resize_thunks.cc", | 77 "gles2_impl_chromium_resize_thunks.cc", |
76 "gles2_impl_chromium_resize_thunks.h", | 78 "gles2_impl_chromium_resize_thunks.h", |
77 "gles2_impl_chromium_sub_image_thunks.cc", | 79 "gles2_impl_chromium_sub_image_thunks.cc", |
78 "gles2_impl_chromium_sub_image_thunks.h", | 80 "gles2_impl_chromium_sub_image_thunks.h", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 } | 124 } |
123 | 125 |
124 mojo_sdk_source_set("mgl_onscreen_thunks") { | 126 mojo_sdk_source_set("mgl_onscreen_thunks") { |
125 sources = [ | 127 sources = [ |
126 "mgl_onscreen_thunks.c", | 128 "mgl_onscreen_thunks.c", |
127 "mgl_onscreen_thunks.h", | 129 "mgl_onscreen_thunks.h", |
128 ] | 130 ] |
129 | 131 |
130 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] | 132 mojo_sdk_deps = [ "mojo/public/c/gpu:MGL_onscreen" ] |
131 } | 133 } |
OLD | NEW |