| 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': [ |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'proxy/pdf_resource.cc', | 105 'proxy/pdf_resource.cc', |
| 106 'proxy/pdf_resource.h', | 106 'proxy/pdf_resource.h', |
| 107 'proxy/platform_verification_private_resource.cc', | 107 'proxy/platform_verification_private_resource.cc', |
| 108 'proxy/platform_verification_private_resource.h', | 108 'proxy/platform_verification_private_resource.h', |
| 109 'proxy/plugin_array_buffer_var.cc', | 109 'proxy/plugin_array_buffer_var.cc', |
| 110 'proxy/plugin_array_buffer_var.h', | 110 'proxy/plugin_array_buffer_var.h', |
| 111 'proxy/plugin_dispatcher.cc', | 111 'proxy/plugin_dispatcher.cc', |
| 112 'proxy/plugin_dispatcher.h', | 112 'proxy/plugin_dispatcher.h', |
| 113 'proxy/plugin_globals.cc', | 113 'proxy/plugin_globals.cc', |
| 114 'proxy/plugin_globals.h', | 114 'proxy/plugin_globals.h', |
| 115 'proxy/plugin_main_nacl.cc', | |
| 116 'proxy/plugin_message_filter.cc', | 115 'proxy/plugin_message_filter.cc', |
| 117 'proxy/plugin_message_filter.h', | 116 'proxy/plugin_message_filter.h', |
| 118 'proxy/plugin_resource.cc', | 117 'proxy/plugin_resource.cc', |
| 119 'proxy/plugin_resource.h', | 118 'proxy/plugin_resource.h', |
| 120 'proxy/plugin_resource_tracker.cc', | 119 'proxy/plugin_resource_tracker.cc', |
| 121 'proxy/plugin_resource_tracker.h', | 120 'proxy/plugin_resource_tracker.h', |
| 122 'proxy/plugin_resource_var.cc', | 121 'proxy/plugin_resource_var.cc', |
| 123 'proxy/plugin_resource_var.h', | 122 'proxy/plugin_resource_var.h', |
| 124 'proxy/plugin_var_serialization_rules.cc', | 123 'proxy/plugin_var_serialization_rules.cc', |
| 125 'proxy/plugin_var_serialization_rules.h', | 124 'proxy/plugin_var_serialization_rules.h', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'defines': [ | 236 'defines': [ |
| 238 'PPAPI_PROXY_IMPLEMENTATION', | 237 'PPAPI_PROXY_IMPLEMENTATION', |
| 239 ], | 238 ], |
| 240 'include_dirs': [ | 239 'include_dirs': [ |
| 241 '..', | 240 '..', |
| 242 ], | 241 ], |
| 243 'target_conditions': [ | 242 'target_conditions': [ |
| 244 ['>(nacl_untrusted_build)==1', { | 243 ['>(nacl_untrusted_build)==1', { |
| 245 'sources': [ | 244 'sources': [ |
| 246 'proxy/irt_ppapi.c', | 245 'proxy/irt_ppapi.c', |
| 246 'proxy/plugin_main_irt.cc', |
| 247 'proxy/plugin_main_irt.h', |
| 247 ], | 248 ], |
| 248 'sources!': [ | 249 'sources!': [ |
| 249 'proxy/audio_input_resource.cc', | 250 'proxy/audio_input_resource.cc', |
| 250 'proxy/broker_dispatcher.cc', | 251 'proxy/broker_dispatcher.cc', |
| 251 'proxy/browser_font_singleton_resource.cc', | 252 'proxy/browser_font_singleton_resource.cc', |
| 252 'proxy/device_enumeration_resource_helper.cc', | 253 'proxy/device_enumeration_resource_helper.cc', |
| 253 'proxy/flash_clipboard_resource.cc', | 254 'proxy/flash_clipboard_resource.cc', |
| 254 'proxy/flash_drm_resource.cc', | 255 'proxy/flash_drm_resource.cc', |
| 255 'proxy/flash_file_resource.cc', | 256 'proxy/flash_file_resource.cc', |
| 256 'proxy/flash_font_file_resource.cc', | 257 'proxy/flash_font_file_resource.cc', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 276 'proxy/serialized_flash_menu.cc', | 277 'proxy/serialized_flash_menu.cc', |
| 277 'proxy/talk_resource.cc', | 278 'proxy/talk_resource.cc', |
| 278 'proxy/video_capture_resource.cc', | 279 'proxy/video_capture_resource.cc', |
| 279 ], | 280 ], |
| 280 }], | 281 }], |
| 281 ], | 282 ], |
| 282 }], | 283 }], |
| 283 ], | 284 ], |
| 284 }, | 285 }, |
| 285 } | 286 } |
| OLD | NEW |