| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 'proxy/ppp_messaging_proxy.cc', | 149 'proxy/ppp_messaging_proxy.cc', |
| 141 'proxy/ppp_messaging_proxy.h', | 150 'proxy/ppp_messaging_proxy.h', |
| 142 'proxy/ppp_mouse_lock_proxy.cc', | 151 'proxy/ppp_mouse_lock_proxy.cc', |
| 143 'proxy/ppp_mouse_lock_proxy.h', | 152 'proxy/ppp_mouse_lock_proxy.h', |
| 144 'proxy/ppp_printing_proxy.cc', | 153 'proxy/ppp_printing_proxy.cc', |
| 145 'proxy/ppp_printing_proxy.h', | 154 'proxy/ppp_printing_proxy.h', |
| 146 'proxy/ppp_text_input_proxy.cc', | 155 'proxy/ppp_text_input_proxy.cc', |
| 147 'proxy/ppp_text_input_proxy.h', | 156 'proxy/ppp_text_input_proxy.h', |
| 148 'proxy/ppp_video_decoder_proxy.cc', | 157 'proxy/ppp_video_decoder_proxy.cc', |
| 149 'proxy/ppp_video_decoder_proxy.h', | 158 'proxy/ppp_video_decoder_proxy.h', |
| 159 'proxy/proxy_array_output.cc', |
| 160 'proxy/proxy_array_output.h', |
| 150 'proxy/proxy_channel.cc', | 161 'proxy/proxy_channel.cc', |
| 151 'proxy/proxy_channel.h', | 162 'proxy/proxy_channel.h', |
| 152 'proxy/proxy_module.cc', | 163 'proxy/proxy_module.cc', |
| 153 'proxy/proxy_module.h', | 164 'proxy/proxy_module.h', |
| 154 'proxy/proxy_object_var.cc', | 165 'proxy/proxy_object_var.cc', |
| 155 'proxy/proxy_object_var.h', | 166 'proxy/proxy_object_var.h', |
| 156 'proxy/resource_creation_proxy.cc', | 167 'proxy/resource_creation_proxy.cc', |
| 157 'proxy/resource_creation_proxy.h', | 168 'proxy/resource_creation_proxy.h', |
| 158 'proxy/serialized_flash_menu.cc', | 169 'proxy/serialized_flash_menu.cc', |
| 159 'proxy/serialized_flash_menu.h', | 170 'proxy/serialized_flash_menu.h', |
| 160 'proxy/serialized_structs.cc', | 171 'proxy/serialized_structs.cc', |
| 161 'proxy/serialized_structs.h', | 172 'proxy/serialized_structs.h', |
| 162 'proxy/serialized_var.cc', | 173 'proxy/serialized_var.cc', |
| 163 'proxy/serialized_var.h', | 174 'proxy/serialized_var.h', |
| 164 'proxy/var_serialization_rules.h', | 175 'proxy/var_serialization_rules.h', |
| 165 ], | 176 ], |
| 166 'defines': [ | 177 'defines': [ |
| 167 'PPAPI_PROXY_IMPLEMENTATION', | 178 'PPAPI_PROXY_IMPLEMENTATION', |
| 168 ], | 179 ], |
| 169 }, | 180 }, |
| 170 ], | 181 ], |
| 171 } | 182 } |
| OLD | NEW |