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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 ], | 442 ], |
443 'includes': [ | 443 'includes': [ |
444 '../build/isolate.gypi', | 444 '../build/isolate.gypi', |
445 ], | 445 ], |
446 'sources': [ | 446 'sources': [ |
447 'nacl_loader_unittests.isolate', | 447 'nacl_loader_unittests.isolate', |
448 ], | 448 ], |
449 }, | 449 }, |
450 ], | 450 ], |
451 }], | 451 }], |
| 452 ['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_test=
=1', { |
| 453 'targets': [ |
| 454 { |
| 455 'target_name': 'nacl_helper_nonsfi_unittests', |
| 456 'type': '<(gtest_target_type)', |
| 457 'sources': [ |
| 458 'nacl/loader/nonsfi/test_launcher_nacl_nonsfi.cc', |
| 459 ], |
| 460 'dependencies': [ |
| 461 '../base/base.gyp:test_support_base', |
| 462 'nacl_nonsfi.gyp:nacl_helper_nonsfi_unittests_main', |
| 463 ], |
| 464 }, |
| 465 ], |
| 466 }], |
452 ], | 467 ], |
453 'targets': [ | 468 'targets': [ |
454 { | 469 { |
455 'target_name': 'nacl_switches', | 470 'target_name': 'nacl_switches', |
456 'type': 'static_library', | 471 'type': 'static_library', |
457 'sources': [ | 472 'sources': [ |
458 'nacl/common/nacl_switches.cc', | 473 'nacl/common/nacl_switches.cc', |
459 'nacl/common/nacl_switches.h', | 474 'nacl/common/nacl_switches.h', |
460 ], | 475 ], |
461 'include_dirs': [ | 476 'include_dirs': [ |
(...skipping 27 matching lines...) Expand all Loading... |
489 ], | 504 ], |
490 'include_dirs': [ | 505 'include_dirs': [ |
491 '..', | 506 '..', |
492 ], | 507 ], |
493 'dependencies': [ | 508 'dependencies': [ |
494 '../content/content.gyp:content_common', | 509 '../content/content.gyp:content_common', |
495 ], | 510 ], |
496 }, | 511 }, |
497 ] | 512 ] |
498 } | 513 } |
OLD | NEW |