| 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 11 matching lines...) Expand all Loading... |
| 22 'proxy/broker_dispatcher.cc', | 22 'proxy/broker_dispatcher.cc', |
| 23 'proxy/broker_dispatcher.h', | 23 'proxy/broker_dispatcher.h', |
| 24 'proxy/connection.h', | 24 'proxy/connection.h', |
| 25 'proxy/dispatcher.cc', | 25 'proxy/dispatcher.cc', |
| 26 'proxy/dispatcher.h', | 26 'proxy/dispatcher.h', |
| 27 'proxy/enter_proxy.h', | 27 'proxy/enter_proxy.h', |
| 28 'proxy/file_chooser_resource.cc', | 28 'proxy/file_chooser_resource.cc', |
| 29 'proxy/file_chooser_resource.h', | 29 'proxy/file_chooser_resource.h', |
| 30 'proxy/flash_device_id_resource.cc', | 30 'proxy/flash_device_id_resource.cc', |
| 31 'proxy/flash_device_id_resource.h', | 31 'proxy/flash_device_id_resource.h', |
| 32 'proxy/flash_font_file_resource.cc', |
| 33 'proxy/flash_font_file_resource.h', |
| 32 'proxy/gamepad_resource.cc', | 34 'proxy/gamepad_resource.cc', |
| 33 'proxy/gamepad_resource.h', | 35 'proxy/gamepad_resource.h', |
| 34 'proxy/host_dispatcher.cc', | 36 'proxy/host_dispatcher.cc', |
| 35 'proxy/host_dispatcher.h', | 37 'proxy/host_dispatcher.h', |
| 36 'proxy/host_var_serialization_rules.cc', | 38 'proxy/host_var_serialization_rules.cc', |
| 37 'proxy/host_var_serialization_rules.h', | 39 'proxy/host_var_serialization_rules.h', |
| 38 'proxy/interface_list.cc', | 40 'proxy/interface_list.cc', |
| 39 'proxy/interface_list.h', | 41 'proxy/interface_list.h', |
| 40 'proxy/interface_proxy.cc', | 42 'proxy/interface_proxy.cc', |
| 41 'proxy/interface_proxy.h', | 43 'proxy/interface_proxy.h', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'PPAPI_PROXY_IMPLEMENTATION', | 165 'PPAPI_PROXY_IMPLEMENTATION', |
| 164 ], | 166 ], |
| 165 'include_dirs': [ | 167 'include_dirs': [ |
| 166 '..', | 168 '..', |
| 167 ], | 169 ], |
| 168 'target_conditions': [ | 170 'target_conditions': [ |
| 169 ['>(nacl_untrusted_build)==1', { | 171 ['>(nacl_untrusted_build)==1', { |
| 170 'sources!': [ | 172 'sources!': [ |
| 171 'proxy/broker_dispatcher.cc', | 173 'proxy/broker_dispatcher.cc', |
| 172 'proxy/flash_device_id_resource.cc', | 174 'proxy/flash_device_id_resource.cc', |
| 175 'proxy/flash_font_file_resource.cc', |
| 173 'proxy/ppb_audio_input_proxy.cc', | 176 'proxy/ppb_audio_input_proxy.cc', |
| 174 'proxy/ppb_broker_proxy.cc', | 177 'proxy/ppb_broker_proxy.cc', |
| 175 'proxy/ppb_buffer_proxy.cc', | 178 'proxy/ppb_buffer_proxy.cc', |
| 176 'proxy/ppb_file_chooser_proxy.cc', | 179 'proxy/ppb_file_chooser_proxy.cc', |
| 177 'proxy/ppb_flash_proxy.cc', | |
| 178 'proxy/ppb_flash_menu_proxy.cc', | 180 'proxy/ppb_flash_menu_proxy.cc', |
| 179 'proxy/ppb_flash_message_loop_proxy.cc', | 181 'proxy/ppb_flash_message_loop_proxy.cc', |
| 182 'proxy/ppb_flash_proxy.cc', |
| 180 'proxy/ppb_pdf_proxy.cc', | 183 'proxy/ppb_pdf_proxy.cc', |
| 181 'proxy/ppb_talk_private_proxy.cc', | 184 'proxy/ppb_talk_private_proxy.cc', |
| 182 'proxy/ppb_video_capture_proxy.cc', | 185 'proxy/ppb_video_capture_proxy.cc', |
| 183 'proxy/ppb_video_decoder_proxy.cc', | 186 'proxy/ppb_video_decoder_proxy.cc', |
| 184 'proxy/ppp_content_decryptor_private_proxy.cc', | 187 'proxy/ppp_content_decryptor_private_proxy.cc', |
| 185 'proxy/ppp_instance_private_proxy.cc', | 188 'proxy/ppp_instance_private_proxy.cc', |
| 186 'proxy/ppp_video_decoder_proxy.cc', | 189 'proxy/ppp_video_decoder_proxy.cc', |
| 187 ], | 190 ], |
| 188 }], | 191 }], |
| 189 ], | 192 ], |
| 190 }], | 193 }], |
| 191 ], | 194 ], |
| 192 }, | 195 }, |
| 193 } | 196 } |
| OLD | NEW |