| 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 config("proxy_implementation") { | 5 config("proxy_implementation") { |
| 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] | 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 component("proxy") { | 9 component("proxy") { |
| 10 output_name = "ppapi_proxy" | 10 output_name = "ppapi_proxy" |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 # Take some standalone files from the C++ wrapper allowing us to more | 13 # Take some standalone files from the C++ wrapper allowing us to more |
| 14 # easily make async callbacks in the proxy. We can't depend on the | 14 # easily make async callbacks in the proxy. We can't depend on the |
| 15 # full C++ wrappers at this layer since the C++ wrappers expect | 15 # full C++ wrappers at this layer since the C++ wrappers expect |
| 16 # symbols defining the globals for "being a plugin" which we are not. | 16 # symbols defining the globals for "being a plugin" which we are not. |
| 17 # These callback files are standalone. | 17 # These callback files are standalone. |
| 18 "../cpp/completion_callback.h", | 18 "../cpp/completion_callback.h", |
| 19 "../utility/completion_callback_factory.h", | 19 "../utility/completion_callback_factory.h", |
| 20 "audio_buffer_resource.cc", | 20 "audio_buffer_resource.cc", |
| 21 "audio_buffer_resource.h", | 21 "audio_buffer_resource.h", |
| 22 "broker_resource.cc", | 22 "broker_resource.cc", |
| 23 "broker_resource.h", | 23 "broker_resource.h", |
| 24 "camera_capabilities_resource.cc", |
| 25 "camera_capabilities_resource.h", |
| 26 "camera_device_resource.cc", |
| 27 "camera_device_resource.h", |
| 24 "compositor_layer_resource.cc", | 28 "compositor_layer_resource.cc", |
| 25 "compositor_layer_resource.h", | 29 "compositor_layer_resource.h", |
| 26 "compositor_resource.cc", | 30 "compositor_resource.cc", |
| 27 "compositor_resource.h", | 31 "compositor_resource.h", |
| 28 "connection.h", | 32 "connection.h", |
| 29 "dispatcher.cc", | 33 "dispatcher.cc", |
| 30 "dispatcher.h", | 34 "dispatcher.h", |
| 31 "enter_proxy.h", | 35 "enter_proxy.h", |
| 32 "error_conversion.cc", | 36 "error_conversion.cc", |
| 33 "error_conversion.h", | 37 "error_conversion.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "../nacl_irt/ppapi_dispatcher.h", | 209 "../nacl_irt/ppapi_dispatcher.h", |
| 206 ] | 210 ] |
| 207 } else { | 211 } else { |
| 208 sources += [ | 212 sources += [ |
| 209 "audio_input_resource.cc", | 213 "audio_input_resource.cc", |
| 210 "audio_input_resource.h", | 214 "audio_input_resource.h", |
| 211 "broker_dispatcher.cc", | 215 "broker_dispatcher.cc", |
| 212 "broker_dispatcher.h", | 216 "broker_dispatcher.h", |
| 213 "browser_font_singleton_resource.cc", | 217 "browser_font_singleton_resource.cc", |
| 214 "browser_font_singleton_resource.h", | 218 "browser_font_singleton_resource.h", |
| 215 "camera_capabilities_resource.cc", | |
| 216 "camera_capabilities_resource.h", | |
| 217 "camera_device_resource.cc", | |
| 218 "camera_device_resource.h", | |
| 219 "device_enumeration_resource_helper.cc", | 219 "device_enumeration_resource_helper.cc", |
| 220 "device_enumeration_resource_helper.h", | 220 "device_enumeration_resource_helper.h", |
| 221 "flash_clipboard_resource.cc", | 221 "flash_clipboard_resource.cc", |
| 222 "flash_clipboard_resource.h", | 222 "flash_clipboard_resource.h", |
| 223 "flash_drm_resource.cc", | 223 "flash_drm_resource.cc", |
| 224 "flash_drm_resource.h", | 224 "flash_drm_resource.h", |
| 225 "flash_file_resource.cc", | 225 "flash_file_resource.cc", |
| 226 "flash_file_resource.h", | 226 "flash_file_resource.h", |
| 227 "flash_font_file_resource.cc", | 227 "flash_font_file_resource.cc", |
| 228 "flash_font_file_resource.h", | 228 "flash_font_file_resource.h", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 deps = [ | 345 deps = [ |
| 346 "//base/test:test_support", | 346 "//base/test:test_support", |
| 347 "//ipc", | 347 "//ipc", |
| 348 "//ipc:test_support", | 348 "//ipc:test_support", |
| 349 "//ppapi/proxy", | 349 "//ppapi/proxy", |
| 350 "//ppapi/shared_impl", | 350 "//ppapi/shared_impl", |
| 351 "//testing/gmock", | 351 "//testing/gmock", |
| 352 "//testing/gtest", | 352 "//testing/gtest", |
| 353 ] | 353 ] |
| 354 } | 354 } |
| OLD | NEW |