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/nacl_helper_nonsfi_unittests.cc', |
| 459 ], |
| 460 'dependencies': [ |
| 461 '../base/base.gyp:base', |
| 462 '../base/base.gyp:test_launcher_nacl_nonsfi', |
| 463 'nacl_nonsfi.gyp:nacl_helper_nonsfi_unittests_main', |
| 464 ], |
| 465 }, |
| 466 ], |
| 467 }], |
452 ], | 468 ], |
453 'targets': [ | 469 'targets': [ |
454 { | 470 { |
455 'target_name': 'nacl_switches', | 471 'target_name': 'nacl_switches', |
456 'type': 'static_library', | 472 'type': 'static_library', |
457 'sources': [ | 473 'sources': [ |
458 'nacl/common/nacl_switches.cc', | 474 'nacl/common/nacl_switches.cc', |
459 'nacl/common/nacl_switches.h', | 475 'nacl/common/nacl_switches.h', |
460 ], | 476 ], |
461 'include_dirs': [ | 477 'include_dirs': [ |
(...skipping 27 matching lines...) Expand all Loading... |
489 ], | 505 ], |
490 'include_dirs': [ | 506 'include_dirs': [ |
491 '..', | 507 '..', |
492 ], | 508 ], |
493 'dependencies': [ | 509 'dependencies': [ |
494 '../content/content.gyp:content_common', | 510 '../content/content.gyp:content_common', |
495 ], | 511 ], |
496 }, | 512 }, |
497 ] | 513 ] |
498 } | 514 } |
OLD | NEW |