OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'ppapi_proxy_target': 0, | 8 'ppapi_proxy_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
11 # This part is shared between the targets defined below. | 11 # This part is shared between the targets defined below. |
12 ['ppapi_proxy_target==1', { | 12 ['ppapi_proxy_target==1', { |
13 'sources': [ | 13 'sources': [ |
14 # Take some standalone files from the C++ wrapper allowing us to more | 14 # Take some standalone files from the C++ wrapper allowing us to more |
15 # easily make async callbacks in the proxy. We can't depend on the | 15 # easily make async callbacks in the proxy. We can't depend on the |
16 # full C++ wrappers at this layer since the C++ wrappers expect | 16 # full C++ wrappers at this layer since the C++ wrappers expect |
17 # symbols defining the globals for "being a plugin" which we are not. | 17 # symbols defining the globals for "being a plugin" which we are not. |
18 # These callback files are standalone. | 18 # These callback files are standalone. |
19 'cpp/completion_callback.h', | 19 'cpp/completion_callback.h', |
20 'utility/completion_callback_factory.h', | 20 'utility/completion_callback_factory.h', |
21 | 21 |
| 22 'proxy/audio_frame_resource.cc', |
| 23 'proxy/audio_frame_resource.h', |
22 'proxy/audio_input_resource.cc', | 24 'proxy/audio_input_resource.cc', |
23 'proxy/audio_input_resource.h', | 25 'proxy/audio_input_resource.h', |
24 'proxy/broker_dispatcher.cc', | 26 'proxy/broker_dispatcher.cc', |
25 'proxy/broker_dispatcher.h', | 27 'proxy/broker_dispatcher.h', |
26 'proxy/broker_resource.cc', | 28 'proxy/broker_resource.cc', |
27 'proxy/broker_resource.h', | 29 'proxy/broker_resource.h', |
28 'proxy/browser_font_singleton_resource.cc', | 30 'proxy/browser_font_singleton_resource.cc', |
29 'proxy/browser_font_singleton_resource.h', | 31 'proxy/browser_font_singleton_resource.h', |
30 'proxy/connection.h', | 32 'proxy/connection.h', |
31 'proxy/device_enumeration_resource_helper.cc', | 33 'proxy/device_enumeration_resource_helper.cc', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'proxy/host_resolver_resource_base.h', | 79 'proxy/host_resolver_resource_base.h', |
78 'proxy/host_var_serialization_rules.cc', | 80 'proxy/host_var_serialization_rules.cc', |
79 'proxy/host_var_serialization_rules.h', | 81 'proxy/host_var_serialization_rules.h', |
80 'proxy/interface_list.cc', | 82 'proxy/interface_list.cc', |
81 'proxy/interface_list.h', | 83 'proxy/interface_list.h', |
82 'proxy/interface_proxy.cc', | 84 'proxy/interface_proxy.cc', |
83 'proxy/interface_proxy.h', | 85 'proxy/interface_proxy.h', |
84 'proxy/isolated_file_system_private_resource.cc', | 86 'proxy/isolated_file_system_private_resource.cc', |
85 'proxy/isolated_file_system_private_resource.h', | 87 'proxy/isolated_file_system_private_resource.h', |
86 'proxy/locking_resource_releaser.h', | 88 'proxy/locking_resource_releaser.h', |
| 89 'proxy/media_stream_audio_track_resource.cc', |
| 90 'proxy/media_stream_audio_track_resource.h', |
87 'proxy/media_stream_track_resource_base.cc', | 91 'proxy/media_stream_track_resource_base.cc', |
88 'proxy/media_stream_track_resource_base.h', | 92 'proxy/media_stream_track_resource_base.h', |
89 'proxy/media_stream_video_track_resource.cc', | 93 'proxy/media_stream_video_track_resource.cc', |
90 'proxy/media_stream_video_track_resource.h', | 94 'proxy/media_stream_video_track_resource.h', |
91 'proxy/net_address_resource.cc', | 95 'proxy/net_address_resource.cc', |
92 'proxy/net_address_resource.h', | 96 'proxy/net_address_resource.h', |
93 'proxy/network_list_resource.cc', | 97 'proxy/network_list_resource.cc', |
94 'proxy/network_list_resource.h', | 98 'proxy/network_list_resource.h', |
95 'proxy/network_monitor_resource.cc', | 99 'proxy/network_monitor_resource.cc', |
96 'proxy/network_monitor_resource.h', | 100 'proxy/network_monitor_resource.h', |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 'proxy/serialized_flash_menu.cc', | 271 'proxy/serialized_flash_menu.cc', |
268 'proxy/talk_resource.cc', | 272 'proxy/talk_resource.cc', |
269 'proxy/video_capture_resource.cc', | 273 'proxy/video_capture_resource.cc', |
270 ], | 274 ], |
271 }], | 275 }], |
272 ], | 276 ], |
273 }], | 277 }], |
274 ], | 278 ], |
275 }, | 279 }, |
276 } | 280 } |
OLD | NEW |