| 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 # In GYP this is the same target as shared_impl. In GN these are split apart | 6 # In GYP this is the same target as shared_impl. In GN these are split apart |
| 7 # for clarity but to get component builds correct, targets must only depend | 7 # for clarity but to get component builds correct, targets must only depend |
| 8 # on these via the shared_impl component. | 8 # on these via the shared_impl component. |
| 9 # TODO(brettw) separate these when GYP compat is no longer required. | 9 # TODO(brettw) separate these when GYP compat is no longer required. |
| 10 visibility = [ "//ppapi/shared_impl" ] | 10 visibility = [ "//ppapi/shared_impl" ] |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "ppb_video_destination_private_thunk.cc", | 131 "ppb_video_destination_private_thunk.cc", |
| 132 "ppb_video_encoder_api.h", | 132 "ppb_video_encoder_api.h", |
| 133 "ppb_video_encoder_thunk.cc", | 133 "ppb_video_encoder_thunk.cc", |
| 134 "ppb_video_frame_api.h", | 134 "ppb_video_frame_api.h", |
| 135 "ppb_video_frame_thunk.cc", | 135 "ppb_video_frame_thunk.cc", |
| 136 "ppb_video_source_private_api.h", | 136 "ppb_video_source_private_api.h", |
| 137 "ppb_video_source_private_thunk.cc", | 137 "ppb_video_source_private_thunk.cc", |
| 138 "ppb_view_api.h", | 138 "ppb_view_api.h", |
| 139 "ppb_view_dev_thunk.cc", | 139 "ppb_view_dev_thunk.cc", |
| 140 "ppb_view_thunk.cc", | 140 "ppb_view_thunk.cc", |
| 141 "ppb_vpn_provider_api.h", |
| 142 "ppb_vpn_provider_thunk.cc", |
| 141 "ppb_websocket_api.h", | 143 "ppb_websocket_api.h", |
| 142 "ppb_websocket_thunk.cc", | 144 "ppb_websocket_thunk.cc", |
| 143 "ppb_x509_certificate_private_api.h", | 145 "ppb_x509_certificate_private_api.h", |
| 144 "ppb_x509_certificate_private_thunk.cc", | 146 "ppb_x509_certificate_private_thunk.cc", |
| 145 "thunk.h", | 147 "thunk.h", |
| 146 ] | 148 ] |
| 147 | 149 |
| 148 if (!is_nacl) { | 150 if (!is_nacl) { |
| 149 sources += [ | 151 sources += [ |
| 150 "ppb_audio_input_dev_thunk.cc", | 152 "ppb_audio_input_dev_thunk.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 191 |
| 190 configs += [ "//build/config:precompiled_headers" ] | 192 configs += [ "//build/config:precompiled_headers" ] |
| 191 defines = [ | 193 defines = [ |
| 192 # This target goes in the same library as shared_impl (in GYP they are the | 194 # This target goes in the same library as shared_impl (in GYP they are the |
| 193 # same). | 195 # same). |
| 194 "PPAPI_SHARED_IMPLEMENTATION", | 196 "PPAPI_SHARED_IMPLEMENTATION", |
| 195 | 197 |
| 196 "PPAPI_THUNK_IMPLEMENTATION", | 198 "PPAPI_THUNK_IMPLEMENTATION", |
| 197 ] | 199 ] |
| 198 } | 200 } |
| OLD | NEW |