| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 ], | 246 ], |
| 247 'defines': [ | 247 'defines': [ |
| 248 'PPAPI_PROXY_IMPLEMENTATION', | 248 'PPAPI_PROXY_IMPLEMENTATION', |
| 249 ], | 249 ], |
| 250 'include_dirs': [ | 250 'include_dirs': [ |
| 251 '..', | 251 '..', |
| 252 ], | 252 ], |
| 253 'target_conditions': [ | 253 'target_conditions': [ |
| 254 ['>(nacl_untrusted_build)==1', { | 254 ['>(nacl_untrusted_build)==1', { |
| 255 'sources': [ | 255 'sources': [ |
| 256 'nacl_irt/irt_interfaces.cc', |
| 257 'nacl_irt/irt_interfaces.h', |
| 256 'nacl_irt/irt_ppapi.cc', | 258 'nacl_irt/irt_ppapi.cc', |
| 257 'nacl_irt/irt_ppapi.h', | 259 'nacl_irt/irt_ppapi.h', |
| 258 'nacl_irt/irt_start.cc', | 260 'nacl_irt/irt_start.cc', |
| 259 'nacl_irt/manifest_service.cc', | 261 'nacl_irt/manifest_service.cc', |
| 260 'nacl_irt/manifest_service.h', | 262 'nacl_irt/manifest_service.h', |
| 261 'nacl_irt/plugin_main.cc', | 263 'nacl_irt/plugin_main.cc', |
| 262 'nacl_irt/plugin_main.h', | 264 'nacl_irt/plugin_main.h', |
| 263 'nacl_irt/plugin_startup.cc', | 265 'nacl_irt/plugin_startup.cc', |
| 264 'nacl_irt/plugin_startup.h', | 266 'nacl_irt/plugin_startup.h', |
| 265 'nacl_irt/ppapi_dispatcher.cc', | 267 'nacl_irt/ppapi_dispatcher.cc', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 295 'proxy/ppp_video_decoder_proxy.cc', | 297 'proxy/ppp_video_decoder_proxy.cc', |
| 296 'proxy/serialized_flash_menu.cc', | 298 'proxy/serialized_flash_menu.cc', |
| 297 'proxy/video_capture_resource.cc', | 299 'proxy/video_capture_resource.cc', |
| 298 ], | 300 ], |
| 299 }], | 301 }], |
| 300 ], | 302 ], |
| 301 }], | 303 }], |
| 302 ], | 304 ], |
| 303 }, | 305 }, |
| 304 } | 306 } |
| OLD | NEW |