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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain)
{ | 144 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain)
{ |
145 sources -= [ | 145 sources -= [ |
146 "ppb_audio_shared.cc", | 146 "ppb_audio_shared.cc", |
147 "ppb_graphics_3d_shared.cc", | 147 "ppb_graphics_3d_shared.cc", |
148 "ppb_opengles2_shared.cc", | 148 "ppb_opengles2_shared.cc", |
149 "private/net_address_private_impl.cc", | 149 "private/net_address_private_impl.cc", |
150 "private/ppb_host_resolver_shared.cc", | 150 "private/ppb_host_resolver_shared.cc", |
151 ] | 151 ] |
152 } | 152 } |
153 | 153 |
| 154 configs += [ "//build/config:precompiled_headers" ] |
154 defines = [ | 155 defines = [ |
155 "PPAPI_SHARED_IMPLEMENTATION", | 156 "PPAPI_SHARED_IMPLEMENTATION", |
156 | 157 |
157 # This target goes in the same library as thunk (in GYP they are the same). | 158 # This target goes in the same library as thunk (in GYP they are the same). |
158 "PPAPI_THUNK_IMPLEMENTATION", | 159 "PPAPI_THUNK_IMPLEMENTATION", |
159 ] | 160 ] |
160 | 161 |
161 deps = [ | 162 deps = [ |
162 "//base", | 163 "//base", |
163 "//base:i18n", | 164 "//base:i18n", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 deps = [ | 201 deps = [ |
201 "//base/test:test_support", | 202 "//base/test:test_support", |
202 "//ipc", | 203 "//ipc", |
203 "//ipc:test_support", | 204 "//ipc:test_support", |
204 "//ppapi/proxy", | 205 "//ppapi/proxy", |
205 "//ppapi/shared_impl", | 206 "//ppapi/shared_impl", |
206 "//testing/gmock", | 207 "//testing/gmock", |
207 "//testing/gtest", | 208 "//testing/gtest", |
208 ] | 209 ] |
209 } | 210 } |
OLD | NEW |