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 ], | 237 ], |
238 'defines': [ | 238 'defines': [ |
239 'PPAPI_PROXY_IMPLEMENTATION', | 239 'PPAPI_PROXY_IMPLEMENTATION', |
240 ], | 240 ], |
241 'include_dirs': [ | 241 'include_dirs': [ |
242 '..', | 242 '..', |
243 ], | 243 ], |
244 'target_conditions': [ | 244 'target_conditions': [ |
245 ['>(nacl_untrusted_build)==1', { | 245 ['>(nacl_untrusted_build)==1', { |
246 'sources': [ | 246 'sources': [ |
| 247 'nacl_irt/embedder_service.cc', |
| 248 'nacl_irt/embedder_service.h', |
247 'nacl_irt/irt_ppapi.cc', | 249 'nacl_irt/irt_ppapi.cc', |
248 'nacl_irt/irt_ppapi.h', | 250 'nacl_irt/irt_ppapi.h', |
249 'nacl_irt/irt_start.cc', | 251 'nacl_irt/irt_start.cc', |
250 'nacl_irt/plugin_main.cc', | 252 'nacl_irt/plugin_main.cc', |
251 'nacl_irt/plugin_main.h', | 253 'nacl_irt/plugin_main.h', |
252 'nacl_irt/plugin_startup.cc', | 254 'nacl_irt/plugin_startup.cc', |
253 'nacl_irt/plugin_startup.h', | 255 'nacl_irt/plugin_startup.h', |
254 'nacl_irt/ppapi_dispatcher.cc', | 256 'nacl_irt/ppapi_dispatcher.cc', |
255 'nacl_irt/ppapi_dispatcher.h', | 257 'nacl_irt/ppapi_dispatcher.h', |
256 ], | 258 ], |
(...skipping 28 matching lines...) Expand all Loading... |
285 'proxy/serialized_flash_menu.cc', | 287 'proxy/serialized_flash_menu.cc', |
286 'proxy/talk_resource.cc', | 288 'proxy/talk_resource.cc', |
287 'proxy/video_capture_resource.cc', | 289 'proxy/video_capture_resource.cc', |
288 ], | 290 ], |
289 }], | 291 }], |
290 ], | 292 ], |
291 }], | 293 }], |
292 ], | 294 ], |
293 }, | 295 }, |
294 } | 296 } |
OLD | NEW |