OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 ], | 444 ], |
445 'includes': [ | 445 'includes': [ |
446 '../build/isolate.gypi', | 446 '../build/isolate.gypi', |
447 ], | 447 ], |
448 'sources': [ | 448 'sources': [ |
449 'nacl_loader_unittests.isolate', | 449 'nacl_loader_unittests.isolate', |
450 ], | 450 ], |
451 }, | 451 }, |
452 ], | 452 ], |
453 }], | 453 }], |
| 454 ['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_test=
=1', { |
| 455 'targets': [ |
| 456 { |
| 457 'target_name': 'nacl_helper_nonsfi_unittests', |
| 458 'type': '<(gtest_target_type)', |
| 459 'sources': [ |
| 460 'nacl/loader/nonsfi/nacl_helper_nonsfi_unittests.cc', |
| 461 ], |
| 462 'dependencies': [ |
| 463 '../base/base.gyp:base', |
| 464 '../base/base.gyp:test_launcher_nacl_nonsfi', |
| 465 'nacl_nonsfi.gyp:nacl_helper_nonsfi_unittests_main', |
| 466 ], |
| 467 }, |
| 468 ], |
| 469 }], |
454 ], | 470 ], |
455 'targets': [ | 471 'targets': [ |
456 { | 472 { |
457 'target_name': 'nacl_switches', | 473 'target_name': 'nacl_switches', |
458 'type': 'static_library', | 474 'type': 'static_library', |
459 'sources': [ | 475 'sources': [ |
460 'nacl/common/nacl_switches.cc', | 476 'nacl/common/nacl_switches.cc', |
461 'nacl/common/nacl_switches.h', | 477 'nacl/common/nacl_switches.h', |
462 ], | 478 ], |
463 'include_dirs': [ | 479 'include_dirs': [ |
(...skipping 27 matching lines...) Expand all Loading... |
491 ], | 507 ], |
492 'include_dirs': [ | 508 'include_dirs': [ |
493 '..', | 509 '..', |
494 ], | 510 ], |
495 'dependencies': [ | 511 'dependencies': [ |
496 '../content/content.gyp:content_common', | 512 '../content/content.gyp:content_common', |
497 ], | 513 ], |
498 }, | 514 }, |
499 ] | 515 ] |
500 } | 516 } |
OLD | NEW |