| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "ppb_video_decoder_shared.h", | 136 "ppb_video_decoder_shared.h", |
| 137 "private/ppb_char_set_shared.cc", | 137 "private/ppb_char_set_shared.cc", |
| 138 "private/ppb_char_set_shared.h", | 138 "private/ppb_char_set_shared.h", |
| 139 ] | 139 ] |
| 140 } | 140 } |
| 141 | 141 |
| 142 # TODO(GYP) this isn't correct. This should only be specifically for the | 142 # TODO(GYP) this isn't correct. This should only be specifically for the |
| 143 # nacl_win64 build (cross-compiled for a 32-bit Chrome), rather than the | 143 # nacl_win64 build (cross-compiled for a 32-bit Chrome), rather than the |
| 144 # native 64-bit Chrome build. | 144 # native 64-bit Chrome build. |
| 145 # See also //ppapi/thunk | 145 # See also //ppapi/thunk |
| 146 if (is_win && cpu_arch == "x64" && current_toolchain != default_toolchain) { | 146 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain)
{ |
| 147 sources -= [ | 147 sources -= [ |
| 148 "ppb_audio_shared.cc", | 148 "ppb_audio_shared.cc", |
| 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 = [ |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 deps = [ | 206 deps = [ |
| 207 "//base/test:test_support", | 207 "//base/test:test_support", |
| 208 "//ipc", | 208 "//ipc", |
| 209 "//ipc:test_support", | 209 "//ipc:test_support", |
| 210 "//ppapi/proxy", | 210 "//ppapi/proxy", |
| 211 "//ppapi/shared_impl", | 211 "//ppapi/shared_impl", |
| 212 "//testing/gmock", | 212 "//testing/gmock", |
| 213 "//testing/gtest", | 213 "//testing/gtest", |
| 214 ] | 214 ] |
| 215 } | 215 } |
| OLD | NEW |