| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'defines': [ | 237 'defines': [ |
| 238 'PPAPI_PROXY_IMPLEMENTATION', | 238 'PPAPI_PROXY_IMPLEMENTATION', |
| 239 ], | 239 ], |
| 240 'include_dirs': [ | 240 'include_dirs': [ |
| 241 '..', | 241 '..', |
| 242 ], | 242 ], |
| 243 'target_conditions': [ | 243 'target_conditions': [ |
| 244 ['>(nacl_untrusted_build)==1', { | 244 ['>(nacl_untrusted_build)==1', { |
| 245 'sources': [ | 245 'sources': [ |
| 246 'proxy/irt_ppapi.c', | 246 'proxy/irt_ppapi.c', |
| 247 'proxy/irt_shim_ppapi.c', |
| 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 |