| 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 source_set("thunk") { | 5 source_set("thunk") { |
| 6 sources = [ | 6 sources = [ |
| 7 "enter.cc", | 7 "enter.cc", |
| 8 "enter.h", | 8 "enter.h", |
| 9 "ppb_audio_api.h", | 9 "ppb_audio_api.h", |
| 10 "ppb_audio_buffer_api.h", | 10 "ppb_audio_buffer_api.h", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "ppb_video_decoder_dev_thunk.cc", | 172 "ppb_video_decoder_dev_thunk.cc", |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 | 175 |
| 176 # We exclude a few more things for nacl_win64, to avoid pulling in more | 176 # We exclude a few more things for nacl_win64, to avoid pulling in more |
| 177 # dependencies. | 177 # dependencies. |
| 178 # TODO(GYP) this isn't correct. This should only be specifically for the | 178 # TODO(GYP) this isn't correct. This should only be specifically for the |
| 179 # nacl_win64 build (cross-compiled for a 32-bit Chrome), rather than all | 179 # nacl_win64 build (cross-compiled for a 32-bit Chrome), rather than all |
| 180 # 64-bit builds. | 180 # 64-bit builds. |
| 181 # See also //ppapi/shared_impl | 181 # See also //ppapi/shared_impl |
| 182 if (is_win && cpu_arch == "x64" && current_toolchain != default_toolchain) { | 182 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain)
{ |
| 183 sources += [ | 183 sources += [ |
| 184 "ppb_graphics_3d_thunk.cc", | 184 "ppb_graphics_3d_thunk.cc", |
| 185 "ppb_host_resolver_private_thunk.cc", | 185 "ppb_host_resolver_private_thunk.cc", |
| 186 "ppb_tcp_server_socket_private_thunk.cc", | 186 "ppb_tcp_server_socket_private_thunk.cc", |
| 187 "ppb_tcp_socket_private_thunk.cc", | 187 "ppb_tcp_socket_private_thunk.cc", |
| 188 "ppb_udp_socket_private_thunk.cc", | 188 "ppb_udp_socket_private_thunk.cc", |
| 189 "ppb_x509_certificate_private_thunk.cc", | 189 "ppb_x509_certificate_private_thunk.cc", |
| 190 ] | 190 ] |
| 191 } | 191 } |
| 192 | 192 |
| 193 defines = [ "PPAPI_THUNK_IMPLEMENTATION" ] | 193 defines = [ "PPAPI_THUNK_IMPLEMENTATION" ] |
| 194 } | 194 } |
| OLD | NEW |