Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 gypi_values = exec_script("//build/gypi_to_gn.py", | 5 import("//ppapi/ppapi_sources.gni") |
| 6 [ rebase_path("ppapi_sources.gypi") ], | |
| 7 "scope", | |
| 8 [ "ppapi_sources.gypi" ]) | |
| 9 | |
| 10 # TODO(GYP) support chrome_multiple_dll | |
| 11 #if (chrome_multiple_dll) { | |
| 12 # blink_target = "//third_party/WebKit/public:blink_minimal" | |
| 13 #} else { | |
| 14 blink_target = "//third_party/WebKit/public:blink" | |
| 15 #} | |
| 16 | |
| 17 # These are just headers. | |
| 18 source_set("ppapi_c") { | |
| 19 sources = gypi_values.c_source_files | |
| 20 } | |
| 21 | |
| 22 # Some targets need to depend on the PPAPI version only. This target exists so | |
| 23 # they can include this header without header check warnings. | |
| 24 source_set("ppapi_macros") { | |
| 25 sources = [ | |
| 26 "c/pp_macros.h", | |
| 27 ] | |
| 28 } | |
| 29 | |
| 30 source_set("ppapi_cpp_objects") { | |
| 31 sources = gypi_values.cpp_source_files | |
| 32 } | |
| 33 | |
| 34 source_set("ppapi_cpp") { | |
| 35 sources = [ | |
| 36 "cpp/module_embedder.h", | |
| 37 "cpp/ppp_entrypoints.cc", | |
| 38 ] | |
| 39 | |
| 40 deps = [ | |
| 41 ":ppapi_c", | |
| 42 ":ppapi_cpp_objects", | |
| 43 ] | |
| 44 } | |
| 45 | |
| 46 source_set("ppapi_internal_module") { | |
| 47 sources = [ | |
| 48 "cpp/private/internal_module.cc", | |
| 49 "cpp/private/internal_module.h", | |
| 50 ] | |
| 51 } | |
| 52 | |
| 53 source_set("ppapi_gles2") { | |
| 54 sources = [ | |
| 55 "lib/gl/gles2/gl2ext_ppapi.c", | |
| 56 "lib/gl/gles2/gl2ext_ppapi.h", | |
| 57 "lib/gl/gles2/gles2.c", | |
| 58 ] | |
| 59 | |
| 60 include_dirs = [ "lib/gl/include" ] | |
| 61 | |
| 62 deps = [ | |
| 63 ":ppapi_c", | |
| 64 ] | |
| 65 } | |
| 66 | 6 |
| 67 # TODO(brettw) argument list is too long. Need to add response files. | 7 # TODO(brettw) argument list is too long. Need to add response files. |
| 68 #shared_library("ppapi_tests") { | 8 #shared_library("ppapi_tests") { |
| 69 # sources = gypi_values.test_common_source_files + | 9 # sources = ppapi_sources.test_common_source_files + |
| 70 # gypi_values.test_trusted_source_files | 10 # ppapi_sources.test_trusted_source_files |
| 71 # | 11 # |
| 72 # defines = [ "GL_GLEXT_PROTOTYPES" ] | 12 # defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 73 # include_dirs = [ "lib/gl/include" ] | 13 # include_dirs = [ "lib/gl/include" ] |
| 74 # | 14 # |
| 75 # deps = [ | 15 # deps = [ |
| 76 # ":ppapi_cpp", | 16 # "//ppapi/cpp", |
| 77 # ":ppapi_shared", | 17 # "//ppapi/shared_impl", |
| 78 # ] | 18 # ] |
| 79 #} | 19 #} |
| 80 | |
| 81 component("ppapi_shared") { | |
| 82 sources = [ | |
| 83 "shared_impl/array_var.cc", | |
| 84 "shared_impl/array_var.h", | |
| 85 "shared_impl/array_writer.cc", | |
| 86 "shared_impl/array_writer.h", | |
| 87 "shared_impl/callback_tracker.cc", | |
| 88 "shared_impl/callback_tracker.h", | |
| 89 "shared_impl/compositor_layer_data.cc", | |
| 90 "shared_impl/compositor_layer_data.h", | |
| 91 "shared_impl/dictionary_var.cc", | |
| 92 "shared_impl/dictionary_var.h", | |
| 93 "shared_impl/file_io_state_manager.cc", | |
| 94 "shared_impl/file_io_state_manager.h", | |
| 95 "shared_impl/file_growth.cc", | |
| 96 "shared_impl/file_growth.h", | |
| 97 "shared_impl/file_path.cc", | |
| 98 "shared_impl/file_path.h", | |
| 99 "shared_impl/file_ref_create_info.cc", | |
| 100 "shared_impl/file_ref_create_info.h", | |
| 101 "shared_impl/file_ref_util.cc", | |
| 102 "shared_impl/file_ref_util.h", | |
| 103 "shared_impl/file_system_util.cc", | |
| 104 "shared_impl/file_system_util.h", | |
| 105 "shared_impl/file_type_conversion.cc", | |
| 106 "shared_impl/file_type_conversion.h", | |
| 107 "shared_impl/host_resource.cc", | |
| 108 "shared_impl/host_resource.h", | |
| 109 "shared_impl/id_assignment.cc", | |
| 110 "shared_impl/id_assignment.h", | |
| 111 "shared_impl/media_stream_buffer.h", | |
| 112 "shared_impl/media_stream_buffer_manager.cc", | |
| 113 "shared_impl/media_stream_buffer_manager.h", | |
| 114 "shared_impl/media_stream_audio_track_shared.cc", | |
| 115 "shared_impl/media_stream_audio_track_shared.h", | |
| 116 "shared_impl/media_stream_video_track_shared.h", | |
| 117 "shared_impl/media_stream_video_track_shared.cc", | |
| 118 "shared_impl/platform_file.cc", | |
| 119 "shared_impl/platform_file.h", | |
| 120 "shared_impl/ppapi_constants.h", | |
| 121 "shared_impl/ppapi_globals.cc", | |
| 122 "shared_impl/ppapi_globals.h", | |
| 123 "shared_impl/ppapi_nacl_plugin_args.cc", | |
| 124 "shared_impl/ppapi_nacl_plugin_args.h", | |
| 125 "shared_impl/ppapi_permissions.cc", | |
| 126 "shared_impl/ppapi_permissions.h", | |
| 127 "shared_impl/ppapi_preferences.cc", | |
| 128 "shared_impl/ppapi_preferences.h", | |
| 129 "shared_impl/ppapi_switches.cc", | |
| 130 "shared_impl/ppapi_switches.h", | |
| 131 "shared_impl/ppb_audio_config_shared.cc", | |
| 132 "shared_impl/ppb_audio_config_shared.h", | |
| 133 "shared_impl/ppb_audio_shared.cc", | |
| 134 "shared_impl/ppb_audio_shared.h", | |
| 135 "shared_impl/ppb_crypto_shared.cc", | |
| 136 "shared_impl/ppb_device_ref_shared.cc", | |
| 137 "shared_impl/ppb_device_ref_shared.h", | |
| 138 "shared_impl/ppb_gamepad_shared.cc", | |
| 139 "shared_impl/ppb_gamepad_shared.h", | |
| 140 "shared_impl/ppb_graphics_3d_shared.cc", | |
| 141 "shared_impl/ppb_graphics_3d_shared.h", | |
| 142 "shared_impl/ppb_image_data_shared.cc", | |
| 143 "shared_impl/ppb_image_data_shared.h", | |
| 144 "shared_impl/ppb_input_event_shared.cc", | |
| 145 "shared_impl/ppb_input_event_shared.h", | |
| 146 "shared_impl/ppb_instance_shared.cc", | |
| 147 "shared_impl/ppb_instance_shared.h", | |
| 148 "shared_impl/ppb_memory_shared.cc", | |
| 149 "shared_impl/ppb_message_loop_shared.cc", | |
| 150 "shared_impl/ppb_message_loop_shared.h", | |
| 151 "shared_impl/ppb_opengles2_shared.cc", | |
| 152 "shared_impl/ppb_opengles2_shared.h", | |
| 153 "shared_impl/ppb_tcp_socket_shared.cc", | |
| 154 "shared_impl/ppb_tcp_socket_shared.h", | |
| 155 "shared_impl/ppb_trace_event_impl.cc", | |
| 156 "shared_impl/ppb_trace_event_impl.h", | |
| 157 "shared_impl/ppb_var_shared.cc", | |
| 158 "shared_impl/ppb_var_shared.h", | |
| 159 "shared_impl/ppb_view_shared.cc", | |
| 160 "shared_impl/ppb_view_shared.h", | |
| 161 "shared_impl/ppp_flash_browser_operations_shared.h", | |
| 162 "shared_impl/ppp_instance_combined.cc", | |
| 163 "shared_impl/ppp_instance_combined.h", | |
| 164 "shared_impl/proxy_lock.cc", | |
| 165 "shared_impl/proxy_lock.h", | |
| 166 "shared_impl/resource.cc", | |
| 167 "shared_impl/resource.h", | |
| 168 "shared_impl/resource_tracker.cc", | |
| 169 "shared_impl/resource_tracker.h", | |
| 170 "shared_impl/resource_var.cc", | |
| 171 "shared_impl/resource_var.h", | |
| 172 "shared_impl/scoped_pp_resource.cc", | |
| 173 "shared_impl/scoped_pp_resource.h", | |
| 174 "shared_impl/scoped_pp_var.cc", | |
| 175 "shared_impl/scoped_pp_var.h", | |
| 176 "shared_impl/socket_option_data.cc", | |
| 177 "shared_impl/socket_option_data.h", | |
| 178 "shared_impl/test_harness_utils.cc", | |
| 179 "shared_impl/test_harness_utils.h", | |
| 180 "shared_impl/thread_aware_callback.cc", | |
| 181 "shared_impl/thread_aware_callback.h", | |
| 182 "shared_impl/time_conversion.cc", | |
| 183 "shared_impl/time_conversion.h", | |
| 184 "shared_impl/tracked_callback.cc", | |
| 185 "shared_impl/tracked_callback.h", | |
| 186 "shared_impl/url_request_info_data.cc", | |
| 187 "shared_impl/url_request_info_data.h", | |
| 188 "shared_impl/url_response_info_data.cc", | |
| 189 "shared_impl/url_response_info_data.h", | |
| 190 "shared_impl/var.cc", | |
| 191 "shared_impl/var.h", | |
| 192 "shared_impl/var_tracker.cc", | |
| 193 "shared_impl/var_tracker.h", | |
| 194 | |
| 195 # TODO(viettrungluu): Split these out; it won"t be used in NaCl. | |
| 196 "shared_impl/private/net_address_private_impl.cc", | |
| 197 "shared_impl/private/net_address_private_impl_constants.cc", | |
| 198 "shared_impl/private/net_address_private_impl.h", | |
| 199 "shared_impl/private/ppb_x509_certificate_private_shared.cc", | |
| 200 "shared_impl/private/ppb_x509_certificate_private_shared.h", | |
| 201 "thunk/enter.cc", | |
| 202 "thunk/enter.h", | |
| 203 "thunk/ppb_audio_api.h", | |
| 204 "thunk/ppb_audio_config_api.h", | |
| 205 "thunk/ppb_audio_config_thunk.cc", | |
| 206 "thunk/ppb_audio_buffer_api.h", | |
| 207 "thunk/ppb_audio_buffer_thunk.cc", | |
| 208 "thunk/ppb_audio_input_api.h", | |
| 209 "thunk/ppb_audio_thunk.cc", | |
| 210 "thunk/ppb_broker_api.h", | |
| 211 "thunk/ppb_browser_font_trusted_api.h", | |
| 212 "thunk/ppb_buffer_api.h", | |
| 213 "thunk/ppb_compositor_api.h", | |
| 214 "thunk/ppb_compositor_layer_api.h", | |
| 215 "thunk/ppb_compositor_layer_thunk.cc", | |
| 216 "thunk/ppb_compositor_thunk.cc", | |
| 217 "thunk/ppb_console_thunk.cc", | |
| 218 "thunk/ppb_cursor_control_thunk.cc", | |
| 219 "thunk/ppb_device_ref_api.h", | |
| 220 "thunk/ppb_device_ref_dev_thunk.cc", | |
| 221 "thunk/ppb_ext_crx_file_system_private_thunk.cc", | |
| 222 "thunk/ppb_file_chooser_api.h", | |
| 223 "thunk/ppb_file_chooser_dev_thunk.cc", | |
| 224 "thunk/ppb_file_chooser_trusted_thunk.cc", | |
| 225 "thunk/ppb_file_io_api.h", | |
| 226 "thunk/ppb_file_io_private_thunk.cc", | |
| 227 "thunk/ppb_file_io_thunk.cc", | |
| 228 "thunk/ppb_file_mapping_thunk.cc", | |
| 229 "thunk/ppb_file_ref_api.h", | |
| 230 "thunk/ppb_file_ref_thunk.cc", | |
| 231 "thunk/ppb_file_system_api.h", | |
| 232 "thunk/ppb_file_system_thunk.cc", | |
| 233 "thunk/ppb_find_private_thunk.cc", | |
| 234 "thunk/ppb_flash_clipboard_api.h", | |
| 235 "thunk/ppb_flash_drm_api.h", | |
| 236 "thunk/ppb_flash_font_file_api.h", | |
| 237 "thunk/ppb_flash_fullscreen_api.h", | |
| 238 "thunk/ppb_flash_functions_api.h", | |
| 239 "thunk/ppb_flash_menu_api.h", | |
| 240 "thunk/ppb_flash_message_loop_api.h", | |
| 241 "thunk/ppb_flash_print_thunk.cc", | |
| 242 "thunk/ppb_fullscreen_thunk.cc", | |
| 243 "thunk/ppb_gamepad_api.h", | |
| 244 "thunk/ppb_gamepad_thunk.cc", | |
| 245 "thunk/ppb_graphics_2d_api.h", | |
| 246 "thunk/ppb_graphics_2d_thunk.cc", | |
| 247 "thunk/ppb_graphics_3d_api.h", | |
| 248 "thunk/ppb_graphics_3d_thunk.cc", | |
| 249 "thunk/ppb_host_resolver_api.h", | |
| 250 "thunk/ppb_host_resolver_thunk.cc", | |
| 251 "thunk/ppb_host_resolver_private_api.h", | |
| 252 "thunk/ppb_host_resolver_private_thunk.cc", | |
| 253 "thunk/ppb_image_data_api.h", | |
| 254 "thunk/ppb_image_data_thunk.cc", | |
| 255 "thunk/ppb_input_event_api.h", | |
| 256 "thunk/ppb_input_event_thunk.cc", | |
| 257 "thunk/ppb_input_event_private_thunk.cc", | |
| 258 "thunk/ppb_instance_api.h", | |
| 259 "thunk/ppb_instance_private_thunk.cc", | |
| 260 "thunk/ppb_instance_thunk.cc", | |
| 261 "thunk/ppb_isolated_file_system_private_api.h", | |
| 262 "thunk/ppb_isolated_file_system_private_thunk.cc", | |
| 263 "thunk/ppb_media_stream_audio_track_api.h", | |
| 264 "thunk/ppb_media_stream_audio_track_thunk.cc", | |
| 265 "thunk/ppb_media_stream_video_track_api.h", | |
| 266 "thunk/ppb_media_stream_video_track_thunk.cc", | |
| 267 "thunk/ppb_message_loop_api.h", | |
| 268 "thunk/ppb_messaging_thunk.cc", | |
| 269 "thunk/ppb_mouse_cursor_thunk.cc", | |
| 270 "thunk/ppb_mouse_lock_thunk.cc", | |
| 271 "thunk/ppb_net_address_api.h", | |
| 272 "thunk/ppb_net_address_thunk.cc", | |
| 273 "thunk/ppb_network_list_api.h", | |
| 274 "thunk/ppb_network_list_thunk.cc", | |
| 275 "thunk/ppb_network_monitor_api.h", | |
| 276 "thunk/ppb_network_monitor_thunk.cc", | |
| 277 "thunk/ppb_network_proxy_api.h", | |
| 278 "thunk/ppb_network_proxy_thunk.cc", | |
| 279 "thunk/ppb_output_protection_api.h", | |
| 280 "thunk/ppb_output_protection_private_thunk.cc", | |
| 281 "thunk/ppb_pdf_api.h", | |
| 282 "thunk/ppb_platform_verification_api.h", | |
| 283 "thunk/ppb_printing_api.h", | |
| 284 "thunk/ppb_printing_dev_thunk.cc", | |
| 285 "thunk/ppb_scrollbar_api.h", | |
| 286 "thunk/ppb_talk_private_api.h", | |
| 287 "thunk/ppb_tcp_server_socket_private_api.h", | |
| 288 "thunk/ppb_tcp_server_socket_private_thunk.cc", | |
| 289 "thunk/ppb_tcp_socket_api.h", | |
| 290 "thunk/ppb_tcp_socket_private_api.h", | |
| 291 "thunk/ppb_tcp_socket_private_thunk.cc", | |
| 292 "thunk/ppb_tcp_socket_thunk.cc", | |
| 293 "thunk/ppb_text_input_thunk.cc", | |
| 294 "thunk/ppb_truetype_font_api.h", | |
| 295 "thunk/ppb_truetype_font_singleton_api.h", | |
| 296 "thunk/ppb_truetype_font_dev_thunk.cc", | |
| 297 "thunk/ppb_udp_socket_api.h", | |
| 298 "thunk/ppb_udp_socket_thunk.cc", | |
| 299 "thunk/ppb_udp_socket_private_api.h", | |
| 300 "thunk/ppb_udp_socket_private_thunk.cc", | |
| 301 "thunk/ppb_uma_private_thunk.cc", | |
| 302 "thunk/ppb_uma_singleton_api.h", | |
| 303 "thunk/ppb_url_loader_api.h", | |
| 304 "thunk/ppb_url_loader_thunk.cc", | |
| 305 "thunk/ppb_url_loader_trusted_thunk.cc", | |
| 306 "thunk/ppb_url_request_info_api.h", | |
| 307 "thunk/ppb_url_request_info_thunk.cc", | |
| 308 "thunk/ppb_url_response_info_api.h", | |
| 309 "thunk/ppb_url_response_info_thunk.cc", | |
| 310 "thunk/ppb_var_array_thunk.cc", | |
| 311 "thunk/ppb_var_dictionary_thunk.cc", | |
| 312 "thunk/ppb_video_capture_api.h", | |
| 313 "thunk/ppb_video_capture_thunk.cc", | |
| 314 "thunk/ppb_video_decoder_api.h", | |
| 315 "thunk/ppb_video_decoder_dev_api.h", | |
| 316 "thunk/ppb_video_decoder_thunk.cc", | |
| 317 "thunk/ppb_video_destination_private_api.h", | |
| 318 "thunk/ppb_video_destination_private_thunk.cc", | |
| 319 "thunk/ppb_video_encoder_api.h", | |
| 320 "thunk/ppb_video_encoder_thunk.cc", | |
| 321 "thunk/ppb_video_frame_api.h", | |
| 322 "thunk/ppb_video_frame_thunk.cc", | |
| 323 "thunk/ppb_video_source_private_api.h", | |
| 324 "thunk/ppb_video_source_private_thunk.cc", | |
| 325 "thunk/ppb_view_api.h", | |
| 326 "thunk/ppb_view_dev_thunk.cc", | |
| 327 "thunk/ppb_view_thunk.cc", | |
| 328 "thunk/ppb_websocket_api.h", | |
| 329 "thunk/ppb_websocket_thunk.cc", | |
| 330 "thunk/ppb_widget_api.h", | |
| 331 "thunk/ppb_widget_dev_thunk.cc", | |
| 332 "thunk/ppb_x509_certificate_private_api.h", | |
| 333 "thunk/ppb_x509_certificate_private_thunk.cc", | |
| 334 "thunk/ppb_zoom_dev_thunk.cc", | |
| 335 "thunk/thunk.h", | |
| 336 ] | |
| 337 | |
| 338 if (!is_nacl) { | |
| 339 sources += [ | |
| 340 "shared_impl/flash_clipboard_format_registry.cc", | |
| 341 "shared_impl/flash_clipboard_format_registry.h", | |
| 342 "shared_impl/ppb_url_util_shared.cc", | |
| 343 "shared_impl/ppb_url_util_shared.h", | |
| 344 "shared_impl/ppb_video_decoder_shared.cc", | |
| 345 "shared_impl/ppb_video_decoder_shared.h", | |
| 346 "shared_impl/private/ppb_char_set_shared.cc", | |
| 347 "shared_impl/private/ppb_char_set_shared.h", | |
| 348 "thunk/ppb_audio_input_dev_thunk.cc", | |
| 349 "thunk/ppb_broker_thunk.cc", | |
| 350 "thunk/ppb_browser_font_trusted_thunk.cc", | |
| 351 "thunk/ppb_buffer_thunk.cc", | |
| 352 "thunk/ppb_content_decryptor_private_thunk.cc", | |
| 353 "thunk/ppb_char_set_thunk.cc", | |
| 354 "thunk/ppb_flash_clipboard_thunk.cc", | |
| 355 "thunk/ppb_flash_device_id_thunk.cc", | |
| 356 "thunk/ppb_flash_drm_thunk.cc", | |
| 357 "thunk/ppb_flash_file_fileref_thunk.cc", | |
| 358 "thunk/ppb_flash_file_modulelocal_thunk.cc", | |
| 359 "thunk/ppb_flash_font_file_thunk.cc", | |
| 360 "thunk/ppb_flash_fullscreen_thunk.cc", | |
| 361 "thunk/ppb_flash_menu_thunk.cc", | |
| 362 "thunk/ppb_flash_thunk.cc", | |
| 363 "thunk/ppb_flash_message_loop_thunk.cc", | |
| 364 "thunk/ppb_gles_chromium_texture_mapping_thunk.cc", | |
| 365 "thunk/ppb_pdf_thunk.cc", | |
| 366 "thunk/ppb_platform_verification_private_thunk.cc", | |
| 367 "thunk/ppb_scrollbar_thunk.cc", | |
| 368 "thunk/ppb_talk_private_thunk.cc", | |
| 369 "thunk/ppb_url_util_thunk.cc", | |
| 370 "thunk/ppb_video_decoder_dev_thunk.cc", | |
| 371 ] | |
| 372 } | |
| 373 | |
| 374 # We exclude a few more things for nacl_win64, to avoid pulling in more | |
| 375 # dependencies. | |
| 376 if (is_win && cpu_arch == "x64" && current_toolchain != default_toolchain) { | |
| 377 sources -= [ | |
| 378 "shared_impl/ppb_audio_shared.cc", | |
| 379 "shared_impl/ppb_graphics_3d_shared.cc", | |
| 380 "shared_impl/ppb_opengles2_shared.cc", | |
| 381 "shared_impl/private/ppb_host_resolver_shared.cc", | |
| 382 "shared_impl/private/net_address_private_impl.cc", | |
| 383 "thunk/ppb_graphics_3d_thunk.cc", | |
| 384 "thunk/ppb_host_resolver_private_thunk.cc", | |
| 385 "thunk/ppb_tcp_server_socket_private_thunk.cc", | |
| 386 "thunk/ppb_tcp_socket_private_thunk.cc", | |
| 387 "thunk/ppb_udp_socket_private_thunk.cc", | |
| 388 "thunk/ppb_x509_certificate_private_thunk.cc", | |
| 389 ] | |
| 390 } | |
| 391 | |
| 392 defines = [ | |
| 393 "PPAPI_SHARED_IMPLEMENTATION", | |
| 394 "PPAPI_THUNK_IMPLEMENTATION", | |
| 395 ] | |
| 396 | |
| 397 public_deps = [ | |
| 398 blink_target, | |
| 399 ] | |
| 400 deps = [ | |
| 401 ":ppapi_c", | |
| 402 "//base", | |
| 403 "//base:i18n", | |
| 404 "//base/third_party/dynamic_annotations", | |
| 405 "//gpu/command_buffer/client", | |
| 406 "//gpu/command_buffer/client:gles2_cmd_helper", | |
| 407 "//gpu/command_buffer/client:gles2_implementation", | |
| 408 "//gpu/command_buffer/common", | |
| 409 "//ipc", | |
| 410 "//media:shared_memory_support", | |
| 411 "//skia", | |
| 412 "//third_party/icu:icuuc", | |
| 413 "//ui/events:events_base", | |
| 414 "//ui/surface", | |
| 415 "//url", | |
| 416 ] | |
| 417 | |
| 418 if (is_mac) { | |
| 419 libs = [ "QuartzCore.framework" ] | |
| 420 } | |
| 421 } | |
| 422 | |
| 423 source_set("ppapi_ipc") { | |
| 424 sources = [ | |
| 425 "proxy/nacl_message_scanner.cc", | |
| 426 "proxy/nacl_message_scanner.h", | |
| 427 "proxy/ppapi_messages.cc", | |
| 428 "proxy/ppapi_messages.h", | |
| 429 "proxy/ppapi_param_traits.cc", | |
| 430 "proxy/ppapi_param_traits.h", | |
| 431 "proxy/raw_var_data.cc", | |
| 432 "proxy/raw_var_data.h", | |
| 433 "proxy/resource_message_params.cc", | |
| 434 "proxy/resource_message_params.h", | |
| 435 "proxy/serialized_flash_menu.cc", | |
| 436 "proxy/serialized_flash_menu.h", | |
| 437 "proxy/serialized_handle.cc", | |
| 438 "proxy/serialized_handle.h", | |
| 439 "proxy/serialized_structs.cc", | |
| 440 "proxy/serialized_structs.h", | |
| 441 "proxy/serialized_var.cc", | |
| 442 "proxy/serialized_var.h", | |
| 443 "proxy/var_serialization_rules.h", | |
| 444 ] | |
| 445 | |
| 446 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | |
| 447 | |
| 448 deps = [ | |
| 449 ":ppapi_c", | |
| 450 ":ppapi_shared", | |
| 451 "//base", | |
| 452 "//gpu/ipc", | |
| 453 "//ipc", | |
| 454 "//skia", | |
| 455 "//ui/events/ipc", | |
| 456 ] | |
| 457 | |
| 458 if (is_nacl) { | |
| 459 sources -= [ "proxy/serialized_flash_menu.cc" ] | |
| 460 } | |
| 461 } | |
| 462 | |
| 463 component("ppapi_proxy") { | |
| 464 sources = [ | |
| 465 # Take some standalone files from the C++ wrapper allowing us to more | |
| 466 # easily make async callbacks in the proxy. We can"t depend on the | |
| 467 # full C++ wrappers at this layer since the C++ wrappers expect | |
| 468 # symbols defining the globals for "being a plugin" which we are not. | |
| 469 # These callback files are standalone. | |
| 470 "cpp/completion_callback.h", | |
| 471 "utility/completion_callback_factory.h", | |
| 472 "proxy/audio_buffer_resource.cc", | |
| 473 "proxy/audio_buffer_resource.h", | |
| 474 "proxy/broker_resource.cc", | |
| 475 "proxy/broker_resource.h", | |
| 476 "proxy/compositor_layer_resource.cc", | |
| 477 "proxy/compositor_layer_resource.h", | |
| 478 "proxy/compositor_resource.cc", | |
| 479 "proxy/compositor_resource.h", | |
| 480 "proxy/connection.h", | |
| 481 "proxy/dispatcher.cc", | |
| 482 "proxy/dispatcher.h", | |
| 483 "proxy/enter_proxy.h", | |
| 484 "proxy/error_conversion.cc", | |
| 485 "proxy/error_conversion.h", | |
| 486 "proxy/file_chooser_resource.cc", | |
| 487 "proxy/file_chooser_resource.h", | |
| 488 "proxy/file_io_resource.cc", | |
| 489 "proxy/file_io_resource.h", | |
| 490 "proxy/file_mapping_resource.cc", | |
| 491 "proxy/file_mapping_resource.h", | |
| 492 "proxy/file_mapping_resource_posix.cc", | |
| 493 "proxy/file_mapping_resource_win.cc", | |
| 494 "proxy/file_ref_resource.cc", | |
| 495 "proxy/file_ref_resource.h", | |
| 496 "proxy/file_system_resource.cc", | |
| 497 "proxy/file_system_resource.h", | |
| 498 "proxy/gamepad_resource.cc", | |
| 499 "proxy/gamepad_resource.h", | |
| 500 "proxy/graphics_2d_resource.cc", | |
| 501 "proxy/graphics_2d_resource.h", | |
| 502 "proxy/host_resolver_private_resource.cc", | |
| 503 "proxy/host_resolver_private_resource.h", | |
| 504 "proxy/host_resolver_resource.cc", | |
| 505 "proxy/host_resolver_resource.h", | |
| 506 "proxy/host_resolver_resource_base.cc", | |
| 507 "proxy/host_resolver_resource_base.h", | |
| 508 "proxy/interface_list.cc", | |
| 509 "proxy/interface_list.h", | |
| 510 "proxy/interface_proxy.cc", | |
| 511 "proxy/interface_proxy.h", | |
| 512 "proxy/isolated_file_system_private_resource.cc", | |
| 513 "proxy/isolated_file_system_private_resource.h", | |
| 514 "proxy/locking_resource_releaser.h", | |
| 515 "proxy/media_stream_audio_track_resource.cc", | |
| 516 "proxy/media_stream_audio_track_resource.h", | |
| 517 "proxy/media_stream_track_resource_base.cc", | |
| 518 "proxy/media_stream_track_resource_base.h", | |
| 519 "proxy/media_stream_video_track_resource.cc", | |
| 520 "proxy/media_stream_video_track_resource.h", | |
| 521 "proxy/message_handler.cc", | |
| 522 "proxy/message_handler.h", | |
| 523 "proxy/net_address_resource.cc", | |
| 524 "proxy/net_address_resource.h", | |
| 525 "proxy/network_list_resource.cc", | |
| 526 "proxy/network_list_resource.h", | |
| 527 "proxy/network_monitor_resource.cc", | |
| 528 "proxy/network_monitor_resource.h", | |
| 529 "proxy/network_proxy_resource.cc", | |
| 530 "proxy/network_proxy_resource.h", | |
| 531 "proxy/output_protection_resource.cc", | |
| 532 "proxy/output_protection_resource.h", | |
| 533 "proxy/plugin_array_buffer_var.cc", | |
| 534 "proxy/plugin_array_buffer_var.h", | |
| 535 "proxy/plugin_dispatcher.cc", | |
| 536 "proxy/plugin_dispatcher.h", | |
| 537 "proxy/plugin_globals.cc", | |
| 538 "proxy/plugin_globals.h", | |
| 539 "proxy/plugin_message_filter.cc", | |
| 540 "proxy/plugin_message_filter.h", | |
| 541 "proxy/plugin_resource.cc", | |
| 542 "proxy/plugin_resource.h", | |
| 543 "proxy/plugin_resource_tracker.cc", | |
| 544 "proxy/plugin_resource_tracker.h", | |
| 545 "proxy/plugin_resource_var.cc", | |
| 546 "proxy/plugin_resource_var.h", | |
| 547 "proxy/plugin_var_serialization_rules.cc", | |
| 548 "proxy/plugin_var_serialization_rules.h", | |
| 549 "proxy/plugin_var_tracker.cc", | |
| 550 "proxy/plugin_var_tracker.h", | |
| 551 "proxy/ppapi_command_buffer_proxy.cc", | |
| 552 "proxy/ppapi_command_buffer_proxy.h", | |
| 553 "proxy/ppapi_messages.h", | |
| 554 "proxy/ppapi_message_utils.h", | |
| 555 "proxy/ppb_audio_proxy.cc", | |
| 556 "proxy/ppb_audio_proxy.h", | |
| 557 "proxy/ppb_core_proxy.cc", | |
| 558 "proxy/ppb_core_proxy.h", | |
| 559 "proxy/ppb_graphics_3d_proxy.cc", | |
| 560 "proxy/ppb_graphics_3d_proxy.h", | |
| 561 "proxy/ppb_image_data_proxy.cc", | |
| 562 "proxy/ppb_image_data_proxy.h", | |
| 563 "proxy/ppb_instance_proxy.cc", | |
| 564 "proxy/ppb_instance_proxy.h", | |
| 565 "proxy/ppb_message_loop_proxy.cc", | |
| 566 "proxy/ppb_message_loop_proxy.h", | |
| 567 "proxy/ppb_testing_proxy.cc", | |
| 568 "proxy/ppb_testing_proxy.h", | |
| 569 "proxy/ppb_var_deprecated_proxy.cc", | |
| 570 "proxy/ppb_var_deprecated_proxy.h", | |
| 571 "proxy/ppb_x509_certificate_private_proxy.cc", | |
| 572 "proxy/ppb_x509_certificate_private_proxy.h", | |
| 573 "proxy/ppp_class_proxy.cc", | |
| 574 "proxy/ppp_class_proxy.h", | |
| 575 "proxy/ppp_find_proxy.cc", | |
| 576 "proxy/ppp_find_proxy.h", | |
| 577 "proxy/ppp_graphics_3d_proxy.cc", | |
| 578 "proxy/ppp_graphics_3d_proxy.h", | |
| 579 "proxy/ppp_input_event_proxy.cc", | |
| 580 "proxy/ppp_input_event_proxy.h", | |
| 581 "proxy/ppp_instance_proxy.cc", | |
| 582 "proxy/ppp_instance_proxy.h", | |
| 583 "proxy/ppp_messaging_proxy.cc", | |
| 584 "proxy/ppp_messaging_proxy.h", | |
| 585 "proxy/ppp_mouse_lock_proxy.cc", | |
| 586 "proxy/ppp_mouse_lock_proxy.h", | |
| 587 "proxy/ppp_pdf_proxy.cc", | |
| 588 "proxy/ppp_pdf_proxy.h", | |
| 589 "proxy/ppp_printing_proxy.cc", | |
| 590 "proxy/ppp_printing_proxy.h", | |
| 591 "proxy/ppp_text_input_proxy.cc", | |
| 592 "proxy/ppp_text_input_proxy.h", | |
| 593 "proxy/printing_resource.cc", | |
| 594 "proxy/printing_resource.h", | |
| 595 "proxy/proxy_array_output.cc", | |
| 596 "proxy/proxy_array_output.h", | |
| 597 "proxy/proxy_channel.cc", | |
| 598 "proxy/proxy_channel.h", | |
| 599 "proxy/proxy_completion_callback_factory.h", | |
| 600 "proxy/proxy_module.cc", | |
| 601 "proxy/proxy_module.h", | |
| 602 "proxy/proxy_object_var.cc", | |
| 603 "proxy/proxy_object_var.h", | |
| 604 "proxy/resource_creation_proxy.cc", | |
| 605 "proxy/resource_creation_proxy.h", | |
| 606 "proxy/resource_reply_thread_registrar.cc", | |
| 607 "proxy/resource_reply_thread_registrar.h", | |
| 608 "proxy/tcp_server_socket_private_resource.cc", | |
| 609 "proxy/tcp_server_socket_private_resource.h", | |
| 610 "proxy/tcp_socket_private_resource.cc", | |
| 611 "proxy/tcp_socket_private_resource.h", | |
| 612 "proxy/tcp_socket_resource.cc", | |
| 613 "proxy/tcp_socket_resource.h", | |
| 614 "proxy/tcp_socket_resource_base.cc", | |
| 615 "proxy/tcp_socket_resource_base.h", | |
| 616 "proxy/truetype_font_resource.cc", | |
| 617 "proxy/truetype_font_resource.h", | |
| 618 "proxy/truetype_font_singleton_resource.cc", | |
| 619 "proxy/truetype_font_singleton_resource.h", | |
| 620 "proxy/udp_socket_private_resource.cc", | |
| 621 "proxy/udp_socket_private_resource.h", | |
| 622 "proxy/udp_socket_resource.cc", | |
| 623 "proxy/udp_socket_resource.h", | |
| 624 "proxy/udp_socket_resource_base.cc", | |
| 625 "proxy/udp_socket_resource_base.h", | |
| 626 "proxy/uma_private_resource.cc", | |
| 627 "proxy/uma_private_resource.h", | |
| 628 "proxy/url_loader_resource.cc", | |
| 629 "proxy/url_loader_resource.h", | |
| 630 "proxy/url_request_info_resource.cc", | |
| 631 "proxy/url_request_info_resource.h", | |
| 632 "proxy/url_response_info_resource.cc", | |
| 633 "proxy/url_response_info_resource.h", | |
| 634 "proxy/var_serialization_rules.h", | |
| 635 "proxy/video_destination_resource.cc", | |
| 636 "proxy/video_destination_resource.h", | |
| 637 "proxy/video_frame_resource.cc", | |
| 638 "proxy/video_frame_resource.h", | |
| 639 "proxy/video_source_resource.cc", | |
| 640 "proxy/video_source_resource.h", | |
| 641 "proxy/websocket_resource.cc", | |
| 642 "proxy/websocket_resource.h", | |
| 643 ] | |
| 644 | |
| 645 if (is_nacl) { | |
| 646 sources += [ | |
| 647 "nacl_irt/irt_ppapi.cc", | |
| 648 "nacl_irt/irt_ppapi.h", | |
| 649 "nacl_irt/irt_start.cc", | |
| 650 "nacl_irt/manifest_service.cc", | |
| 651 "nacl_irt/manifest_service.h", | |
| 652 "nacl_irt/plugin_main.cc", | |
| 653 "nacl_irt/plugin_main.h", | |
| 654 "nacl_irt/plugin_startup.cc", | |
| 655 "nacl_irt/plugin_startup.h", | |
| 656 "nacl_irt/ppapi_dispatcher.cc", | |
| 657 "nacl_irt/ppapi_dispatcher.h", | |
| 658 ] | |
| 659 } else { | |
| 660 sources += [ | |
| 661 "proxy/audio_input_resource.cc", | |
| 662 "proxy/audio_input_resource.h", | |
| 663 "proxy/broker_dispatcher.cc", | |
| 664 "proxy/broker_dispatcher.h", | |
| 665 "proxy/browser_font_singleton_resource.cc", | |
| 666 "proxy/browser_font_singleton_resource.h", | |
| 667 "proxy/device_enumeration_resource_helper.cc", | |
| 668 "proxy/device_enumeration_resource_helper.h", | |
| 669 "proxy/flash_clipboard_resource.cc", | |
| 670 "proxy/flash_clipboard_resource.h", | |
| 671 "proxy/flash_drm_resource.cc", | |
| 672 "proxy/flash_drm_resource.h", | |
| 673 "proxy/flash_file_resource.cc", | |
| 674 "proxy/flash_file_resource.h", | |
| 675 "proxy/flash_font_file_resource.cc", | |
| 676 "proxy/flash_font_file_resource.h", | |
| 677 "proxy/flash_fullscreen_resource.cc", | |
| 678 "proxy/flash_fullscreen_resource.h", | |
| 679 "proxy/flash_menu_resource.cc", | |
| 680 "proxy/flash_menu_resource.h", | |
| 681 "proxy/flash_resource.cc", | |
| 682 "proxy/flash_resource.h", | |
| 683 "proxy/host_dispatcher.cc", | |
| 684 "proxy/host_dispatcher.h", | |
| 685 "proxy/host_var_serialization_rules.cc", | |
| 686 "proxy/host_var_serialization_rules.h", | |
| 687 "proxy/pdf_resource.cc", | |
| 688 "proxy/pdf_resource.h", | |
| 689 "proxy/platform_verification_private_resource.cc", | |
| 690 "proxy/platform_verification_private_resource.h", | |
| 691 "proxy/ppb_broker_proxy.cc", | |
| 692 "proxy/ppb_broker_proxy.h", | |
| 693 "proxy/ppb_buffer_proxy.cc", | |
| 694 "proxy/ppb_buffer_proxy.h", | |
| 695 "proxy/ppb_flash_message_loop_proxy.cc", | |
| 696 "proxy/ppb_flash_message_loop_proxy.h", | |
| 697 "proxy/ppb_video_decoder_proxy.cc", | |
| 698 "proxy/ppb_video_decoder_proxy.h", | |
| 699 "proxy/ppp_content_decryptor_private_proxy.cc", | |
| 700 "proxy/ppp_content_decryptor_private_proxy.h", | |
| 701 "proxy/ppp_instance_private_proxy.cc", | |
| 702 "proxy/ppp_instance_private_proxy.h", | |
| 703 "proxy/ppp_video_decoder_proxy.cc", | |
| 704 "proxy/ppp_video_decoder_proxy.h", | |
| 705 "proxy/video_decoder_resource.cc", | |
| 706 "proxy/video_decoder_resource.h", | |
| 707 "proxy/video_encoder_resource.cc", | |
| 708 "proxy/video_encoder_resource.h", | |
| 709 "proxy/talk_resource.cc", | |
| 710 "proxy/talk_resource.h", | |
| 711 "proxy/video_capture_resource.cc", | |
| 712 "proxy/video_capture_resource.h", | |
| 713 ] | |
| 714 } | |
| 715 | |
| 716 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | |
| 717 | |
| 718 deps = [ | |
| 719 ":ppapi_c", | |
| 720 ":ppapi_shared", | |
| 721 ":ppapi_ipc", | |
| 722 "//base", | |
| 723 "//base/third_party/dynamic_annotations", | |
| 724 "//gin", | |
| 725 "//gpu/command_buffer/client:gles2_implementation", | |
| 726 "//gpu/ipc", | |
| 727 "//media:shared_memory_support", | |
| 728 "//ipc", | |
| 729 "//skia", | |
| 730 "//third_party/icu", | |
| 731 "//ui/events:events_base", | |
| 732 "//ui/surface", | |
| 733 blink_target, | |
| 734 ] | |
| 735 } | |
| 736 | |
| 737 component("ppapi_host") { | |
| 738 sources = [ | |
| 739 "host/dispatch_host_message.h", | |
| 740 "host/error_conversion.cc", | |
| 741 "host/error_conversion.h", | |
| 742 "host/host_factory.h", | |
| 743 "host/host_message_context.cc", | |
| 744 "host/host_message_context.h", | |
| 745 "host/instance_message_filter.cc", | |
| 746 "host/instance_message_filter.h", | |
| 747 "host/message_filter_host.cc", | |
| 748 "host/message_filter_host.h", | |
| 749 "host/ppapi_host.cc", | |
| 750 "host/ppapi_host.h", | |
| 751 "host/ppapi_host_export.h", | |
| 752 "host/resource_host.cc", | |
| 753 "host/resource_host.h", | |
| 754 "host/resource_message_filter.cc", | |
| 755 "host/resource_message_filter.h", | |
| 756 "host/resource_message_handler.cc", | |
| 757 "host/resource_message_handler.h", | |
| 758 ] | |
| 759 | |
| 760 defines = [ "PPAPI_HOST_IMPLEMENTATION" ] | |
| 761 | |
| 762 deps = [ | |
| 763 ":ppapi_c", | |
| 764 ":ppapi_ipc", | |
| 765 ":ppapi_proxy", | |
| 766 ":ppapi_shared", | |
| 767 "//base", | |
| 768 "//ipc", | |
| 769 "//media:shared_memory_support", | |
| 770 "//ui/events:events_base", | |
| 771 "//ui/surface", | |
| 772 "//url", | |
| 773 ] | |
| 774 } | |
| 775 | |
| 776 static_library("ppapi_unittest_shared") { | |
| 777 testonly = true | |
| 778 sources = [ | |
| 779 "proxy/ppapi_proxy_test.cc", | |
| 780 "proxy/ppapi_proxy_test.h", | |
| 781 "proxy/resource_message_test_sink.cc", | |
| 782 "proxy/resource_message_test_sink.h", | |
| 783 "shared_impl/test_globals.cc", | |
| 784 "shared_impl/test_globals.h", | |
| 785 "shared_impl/unittest_utils.cc", | |
| 786 "shared_impl/unittest_utils.h", | |
| 787 ] | |
| 788 | |
| 789 deps = [ | |
| 790 ":ppapi_proxy", | |
| 791 ":ppapi_shared", | |
| 792 "//base/test:test_support", | |
| 793 "//ipc", | |
| 794 "//ipc:test_support", | |
| 795 "//testing/gmock", | |
| 796 "//testing/gtest", | |
| 797 ] | |
| 798 } | |
| 799 # TODO(GYP) other targets from ppapi_tests.gyp | 20 # TODO(GYP) other targets from ppapi_tests.gyp |
|
dmichael (off chromium)
2015/02/12 23:44:33
Are the only things left the (non-audio) examples?
brettw
2015/02/13 00:20:58
No, there's everything in the ppapi/tests director
| |
| OLD | NEW |