| 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_input_resource.cc', | 22 'proxy/audio_input_resource.cc', |
| 23 'proxy/audio_input_resource.h', | 23 'proxy/audio_input_resource.h', |
| 24 'proxy/broker_dispatcher.cc', | 24 'proxy/broker_dispatcher.cc', |
| 25 'proxy/broker_dispatcher.h', | 25 'proxy/broker_dispatcher.h', |
| 26 'proxy/broker_resource.cc', | 26 'proxy/broker_resource.cc', |
| 27 'proxy/broker_resource.h', | 27 'proxy/broker_resource.h', |
| 28 'proxy/browser_font_resource_trusted.cc', | 28 'proxy/browser_font_resource_trusted.cc', |
| 29 'proxy/browser_font_resource_trusted.h', | 29 'proxy/browser_font_resource_trusted.h', |
| 30 'proxy/browser_font_singleton_resource.cc', |
| 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', |
| 32 'proxy/device_enumeration_resource_helper.h', | 34 'proxy/device_enumeration_resource_helper.h', |
| 33 'proxy/dispatcher.cc', | 35 'proxy/dispatcher.cc', |
| 34 'proxy/dispatcher.h', | 36 'proxy/dispatcher.h', |
| 35 'proxy/enter_proxy.h', | 37 'proxy/enter_proxy.h', |
| 36 'proxy/graphics_2d_resource.cc', | 38 'proxy/graphics_2d_resource.cc', |
| 37 'proxy/graphics_2d_resource.h', | 39 'proxy/graphics_2d_resource.h', |
| 38 'proxy/file_chooser_resource.cc', | 40 'proxy/file_chooser_resource.cc', |
| 39 'proxy/file_chooser_resource.h', | 41 'proxy/file_chooser_resource.h', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 ], | 183 ], |
| 182 'include_dirs': [ | 184 'include_dirs': [ |
| 183 '..', | 185 '..', |
| 184 ], | 186 ], |
| 185 'target_conditions': [ | 187 'target_conditions': [ |
| 186 ['>(nacl_untrusted_build)==1', { | 188 ['>(nacl_untrusted_build)==1', { |
| 187 'sources!': [ | 189 'sources!': [ |
| 188 'proxy/audio_input_resource.cc', | 190 'proxy/audio_input_resource.cc', |
| 189 'proxy/broker_dispatcher.cc', | 191 'proxy/broker_dispatcher.cc', |
| 190 'proxy/browser_font_resource_trusted.cc', | 192 'proxy/browser_font_resource_trusted.cc', |
| 193 'proxy/browser_font_singleton_resource.cc', |
| 191 'proxy/device_enumeration_resource_helper.cc', | 194 'proxy/device_enumeration_resource_helper.cc', |
| 192 'proxy/flash_clipboard_resource.cc', | 195 'proxy/flash_clipboard_resource.cc', |
| 193 'proxy/flash_device_id_resource.cc', | 196 'proxy/flash_device_id_resource.cc', |
| 194 'proxy/flash_file_resource.cc', | 197 'proxy/flash_file_resource.cc', |
| 195 'proxy/flash_font_file_resource.cc', | 198 'proxy/flash_font_file_resource.cc', |
| 196 'proxy/flash_fullscreen_resource.cc', | 199 'proxy/flash_fullscreen_resource.cc', |
| 197 'proxy/flash_menu_resource.cc', | 200 'proxy/flash_menu_resource.cc', |
| 198 'proxy/flash_resource.cc', | 201 'proxy/flash_resource.cc', |
| 199 'proxy/host_dispatcher.cc', | 202 'proxy/host_dispatcher.cc', |
| 200 'proxy/host_var_serialization_rules.cc', | 203 'proxy/host_var_serialization_rules.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 212 'proxy/serialized_flash_menu.cc', | 215 'proxy/serialized_flash_menu.cc', |
| 213 'proxy/talk_resource.cc', | 216 'proxy/talk_resource.cc', |
| 214 'proxy/video_capture_resource.cc', | 217 'proxy/video_capture_resource.cc', |
| 215 ], | 218 ], |
| 216 }], | 219 }], |
| 217 ], | 220 ], |
| 218 }], | 221 }], |
| 219 ], | 222 ], |
| 220 }, | 223 }, |
| 221 } | 224 } |
| OLD | NEW |