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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ppapi_proxy', | 8 'target_name': 'ppapi_proxy', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 'all_dependent_settings': { | 21 'all_dependent_settings': { |
22 'include_dirs': [ | 22 'include_dirs': [ |
23 '..', | 23 '..', |
24 ], | 24 ], |
25 }, | 25 }, |
26 'include_dirs': [ | 26 'include_dirs': [ |
27 '..', | 27 '..', |
28 '../..', # For nacl includes to work. | 28 '../..', # For nacl includes to work. |
29 ], | 29 ], |
30 'sources': [ | 30 'sources': [ |
| 31 # Take some standalong files from the C++ wrapper allowing us to more |
| 32 # easily make async callbacks in the proxy. We can't depend on the |
| 33 # full C++ wrappers at this layer since the C++ wrappers expect |
| 34 # symbols defining the globals for "being a plugin" which we are not. |
| 35 # These callback files are standalone. |
| 36 'cpp/completion_callback.cc', |
| 37 'cpp/completion_callback.h', |
| 38 'utility/completion_callback_factory.h', |
| 39 |
31 'proxy/broker_dispatcher.cc', | 40 'proxy/broker_dispatcher.cc', |
32 'proxy/broker_dispatcher.h', | 41 'proxy/broker_dispatcher.h', |
33 'proxy/dispatcher.cc', | 42 'proxy/dispatcher.cc', |
34 'proxy/dispatcher.h', | 43 'proxy/dispatcher.h', |
35 'proxy/enter_proxy.h', | 44 'proxy/enter_proxy.h', |
36 'proxy/host_dispatcher.cc', | 45 'proxy/host_dispatcher.cc', |
37 'proxy/host_dispatcher.h', | 46 'proxy/host_dispatcher.h', |
38 'proxy/host_var_serialization_rules.cc', | 47 'proxy/host_var_serialization_rules.cc', |
39 'proxy/host_var_serialization_rules.h', | 48 'proxy/host_var_serialization_rules.h', |
40 'proxy/interface_list.cc', | 49 'proxy/interface_list.cc', |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'proxy/ppp_messaging_proxy.cc', | 153 'proxy/ppp_messaging_proxy.cc', |
145 'proxy/ppp_messaging_proxy.h', | 154 'proxy/ppp_messaging_proxy.h', |
146 'proxy/ppp_mouse_lock_proxy.cc', | 155 'proxy/ppp_mouse_lock_proxy.cc', |
147 'proxy/ppp_mouse_lock_proxy.h', | 156 'proxy/ppp_mouse_lock_proxy.h', |
148 'proxy/ppp_printing_proxy.cc', | 157 'proxy/ppp_printing_proxy.cc', |
149 'proxy/ppp_printing_proxy.h', | 158 'proxy/ppp_printing_proxy.h', |
150 'proxy/ppp_text_input_proxy.cc', | 159 'proxy/ppp_text_input_proxy.cc', |
151 'proxy/ppp_text_input_proxy.h', | 160 'proxy/ppp_text_input_proxy.h', |
152 'proxy/ppp_video_decoder_proxy.cc', | 161 'proxy/ppp_video_decoder_proxy.cc', |
153 'proxy/ppp_video_decoder_proxy.h', | 162 'proxy/ppp_video_decoder_proxy.h', |
| 163 'proxy/proxy_array_output.cc', |
| 164 'proxy/proxy_array_output.h', |
154 'proxy/proxy_channel.cc', | 165 'proxy/proxy_channel.cc', |
155 'proxy/proxy_channel.h', | 166 'proxy/proxy_channel.h', |
156 'proxy/proxy_module.cc', | 167 'proxy/proxy_module.cc', |
157 'proxy/proxy_module.h', | 168 'proxy/proxy_module.h', |
158 'proxy/proxy_object_var.cc', | 169 'proxy/proxy_object_var.cc', |
159 'proxy/proxy_object_var.h', | 170 'proxy/proxy_object_var.h', |
160 'proxy/resource_creation_proxy.cc', | 171 'proxy/resource_creation_proxy.cc', |
161 'proxy/resource_creation_proxy.h', | 172 'proxy/resource_creation_proxy.h', |
162 'proxy/serialized_flash_menu.cc', | 173 'proxy/serialized_flash_menu.cc', |
163 'proxy/serialized_flash_menu.h', | 174 'proxy/serialized_flash_menu.h', |
164 'proxy/serialized_structs.cc', | 175 'proxy/serialized_structs.cc', |
165 'proxy/serialized_structs.h', | 176 'proxy/serialized_structs.h', |
166 'proxy/serialized_var.cc', | 177 'proxy/serialized_var.cc', |
167 'proxy/serialized_var.h', | 178 'proxy/serialized_var.h', |
168 'proxy/var_serialization_rules.h', | 179 'proxy/var_serialization_rules.h', |
169 ], | 180 ], |
170 'defines': [ | 181 'defines': [ |
171 'PPAPI_PROXY_IMPLEMENTATION', | 182 'PPAPI_PROXY_IMPLEMENTATION', |
172 ], | 183 ], |
173 }, | 184 }, |
174 ], | 185 ], |
175 } | 186 } |
OLD | NEW |