OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 component("shared_impl") { | 5 component("shared_impl") { |
6 output_name = "ppapi_shared" | 6 output_name = "ppapi_shared" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "array_var.cc", | 9 "array_var.cc", |
10 "array_var.h", | 10 "array_var.h", |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "ppb_graphics_3d_shared.cc", | 149 "ppb_graphics_3d_shared.cc", |
150 "ppb_opengles2_shared.cc", | 150 "ppb_opengles2_shared.cc", |
151 "private/net_address_private_impl.cc", | 151 "private/net_address_private_impl.cc", |
152 "private/ppb_host_resolver_shared.cc", | 152 "private/ppb_host_resolver_shared.cc", |
153 ] | 153 ] |
154 } | 154 } |
155 | 155 |
156 defines = [ | 156 defines = [ |
157 "PPAPI_SHARED_IMPLEMENTATION", | 157 "PPAPI_SHARED_IMPLEMENTATION", |
158 | 158 |
159 # This target also implements some thunk functions. | 159 # This target goes in the same library as thunk (in GYP they are the same). |
160 "PPAPI_THUNK_IMPLEMENTATION", | 160 "PPAPI_THUNK_IMPLEMENTATION", |
161 ] | 161 ] |
162 | 162 |
163 deps = [ | 163 deps = [ |
164 "//base", | 164 "//base", |
165 "//base:i18n", | 165 "//base:i18n", |
166 "//base/third_party/dynamic_annotations", | 166 "//base/third_party/dynamic_annotations", |
167 "//gpu/command_buffer/client", | 167 "//gpu/command_buffer/client", |
168 "//gpu/command_buffer/client:gles2_cmd_helper", | 168 "//gpu/command_buffer/client:gles2_cmd_helper", |
169 "//gpu/command_buffer/client:gles2_implementation", | 169 "//gpu/command_buffer/client:gles2_implementation", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 deps = [ | 202 deps = [ |
203 "//base/test:test_support", | 203 "//base/test:test_support", |
204 "//ipc", | 204 "//ipc", |
205 "//ipc:test_support", | 205 "//ipc:test_support", |
206 "//ppapi/proxy", | 206 "//ppapi/proxy", |
207 "//ppapi/shared_impl", | 207 "//ppapi/shared_impl", |
208 "//testing/gmock", | 208 "//testing/gmock", |
209 "//testing/gtest", | 209 "//testing/gtest", |
210 ] | 210 ] |
211 } | 211 } |
OLD | NEW |