| 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 "audio_encoder_resource.cc", |
| 23 "audio_encoder_resource.h", |
| 22 "broker_resource.cc", | 24 "broker_resource.cc", |
| 23 "broker_resource.h", | 25 "broker_resource.h", |
| 24 "camera_capabilities_resource.cc", | 26 "camera_capabilities_resource.cc", |
| 25 "camera_capabilities_resource.h", | 27 "camera_capabilities_resource.h", |
| 26 "camera_device_resource.cc", | 28 "camera_device_resource.cc", |
| 27 "camera_device_resource.h", | 29 "camera_device_resource.h", |
| 28 "compositor_layer_resource.cc", | 30 "compositor_layer_resource.cc", |
| 29 "compositor_layer_resource.h", | 31 "compositor_layer_resource.h", |
| 30 "compositor_resource.cc", | 32 "compositor_resource.cc", |
| 31 "compositor_resource.h", | 33 "compositor_resource.h", |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 deps = [ | 358 deps = [ |
| 357 "//base/test:test_support", | 359 "//base/test:test_support", |
| 358 "//ipc", | 360 "//ipc", |
| 359 "//ipc:test_support", | 361 "//ipc:test_support", |
| 360 "//ppapi/proxy", | 362 "//ppapi/proxy", |
| 361 "//ppapi/shared_impl", | 363 "//ppapi/shared_impl", |
| 362 "//testing/gmock", | 364 "//testing/gmock", |
| 363 "//testing/gtest", | 365 "//testing/gtest", |
| 364 ] | 366 ] |
| 365 } | 367 } |
| OLD | NEW |