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", |
11 "ppb_audio_buffer_thunk.cc", | 11 "ppb_audio_buffer_thunk.cc", |
12 "ppb_audio_config_api.h", | 12 "ppb_audio_config_api.h", |
13 "ppb_audio_config_thunk.cc", | 13 "ppb_audio_config_thunk.cc", |
14 "ppb_audio_input_api.h", | 14 "ppb_audio_input_api.h", |
15 "ppb_audio_thunk.cc", | 15 "ppb_audio_thunk.cc", |
16 "ppb_broker_api.h", | 16 "ppb_broker_api.h", |
17 "ppb_browser_font_trusted_api.h", | 17 "ppb_browser_font_trusted_api.h", |
18 "ppb_buffer_api.h", | 18 "ppb_buffer_api.h", |
| 19 "ppb_camera_capabilities_api.h", |
| 20 "ppb_camera_capabilities_private_thunk.cc", |
| 21 "ppb_camera_device_api.h", |
| 22 "ppb_camera_device_private_thunk.cc", |
19 "ppb_compositor_api.h", | 23 "ppb_compositor_api.h", |
20 "ppb_compositor_layer_api.h", | 24 "ppb_compositor_layer_api.h", |
21 "ppb_compositor_layer_thunk.cc", | 25 "ppb_compositor_layer_thunk.cc", |
22 "ppb_compositor_thunk.cc", | 26 "ppb_compositor_thunk.cc", |
23 "ppb_console_thunk.cc", | 27 "ppb_console_thunk.cc", |
24 "ppb_cursor_control_thunk.cc", | 28 "ppb_cursor_control_thunk.cc", |
25 "ppb_device_ref_api.h", | 29 "ppb_device_ref_api.h", |
26 "ppb_device_ref_dev_thunk.cc", | 30 "ppb_device_ref_dev_thunk.cc", |
27 "ppb_ext_crx_file_system_private_thunk.cc", | 31 "ppb_ext_crx_file_system_private_thunk.cc", |
28 "ppb_file_chooser_api.h", | 32 "ppb_file_chooser_api.h", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 "ppb_zoom_dev_thunk.cc", | 144 "ppb_zoom_dev_thunk.cc", |
141 "thunk.h", | 145 "thunk.h", |
142 ] | 146 ] |
143 | 147 |
144 if (!is_nacl) { | 148 if (!is_nacl) { |
145 sources += [ | 149 sources += [ |
146 "ppb_audio_input_dev_thunk.cc", | 150 "ppb_audio_input_dev_thunk.cc", |
147 "ppb_broker_thunk.cc", | 151 "ppb_broker_thunk.cc", |
148 "ppb_browser_font_trusted_thunk.cc", | 152 "ppb_browser_font_trusted_thunk.cc", |
149 "ppb_buffer_thunk.cc", | 153 "ppb_buffer_thunk.cc", |
150 "ppb_camera_capabilities_api.h", | |
151 "ppb_camera_capabilities_private_thunk.cc", | |
152 "ppb_camera_device_api.h", | |
153 "ppb_camera_device_private_thunk.cc", | |
154 "ppb_char_set_thunk.cc", | 154 "ppb_char_set_thunk.cc", |
155 "ppb_content_decryptor_private_thunk.cc", | 155 "ppb_content_decryptor_private_thunk.cc", |
156 "ppb_flash_clipboard_thunk.cc", | 156 "ppb_flash_clipboard_thunk.cc", |
157 "ppb_flash_device_id_thunk.cc", | 157 "ppb_flash_device_id_thunk.cc", |
158 "ppb_flash_drm_thunk.cc", | 158 "ppb_flash_drm_thunk.cc", |
159 "ppb_flash_file_fileref_thunk.cc", | 159 "ppb_flash_file_fileref_thunk.cc", |
160 "ppb_flash_file_modulelocal_thunk.cc", | 160 "ppb_flash_file_modulelocal_thunk.cc", |
161 "ppb_flash_font_file_thunk.cc", | 161 "ppb_flash_font_file_thunk.cc", |
162 "ppb_flash_fullscreen_thunk.cc", | 162 "ppb_flash_fullscreen_thunk.cc", |
163 "ppb_flash_menu_thunk.cc", | 163 "ppb_flash_menu_thunk.cc", |
(...skipping 21 matching lines...) Expand all Loading... |
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 |