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 'includes': [ | 6 'includes': [ |
7 '../../../../ppapi/ppapi_nacl_test_common.gypi', | 7 '../../../../ppapi/ppapi_nacl_test_common.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 ['target_arch=="ia32" and OS=="linux"', { | 605 ['target_arch=="ia32" and OS=="linux"', { |
606 # Enable nonsfi testing only on ia32-linux environment. | 606 # Enable nonsfi testing only on ia32-linux environment. |
607 'variables': { | 607 'variables': { |
608 'enable_x86_32_nonsfi': 1, | 608 'enable_x86_32_nonsfi': 1, |
609 'translate_pexe_with_build': 1, | 609 'translate_pexe_with_build': 1, |
610 }, | 610 }, |
611 }], | 611 }], |
612 ], | 612 ], |
613 }, | 613 }, |
614 { | 614 { |
615 'target_name': 'pm_nameservice_test', | |
616 'type': 'none', | |
617 'variables': { | |
618 'nexe_target': 'pm_nameservice_test', | |
619 'build_newlib': 1, | |
620 'build_glibc': 1, | |
621 'build_pnacl_newlib': 1, | |
622 'nexe_destination_dir': 'nacl_test_data', | |
623 'link_flags': [ | |
624 '-lnacl_ppapi_util', | |
625 '-lppapi_cpp', | |
626 '-lppapi', | |
627 '-lsrpc', | |
628 '-lplatform', | |
629 '-lgio', | |
630 '-limc', | |
631 '-limc_syscalls', | |
632 '-lweak_ref', | |
633 ], | |
634 'sources': [ | |
635 'nameservice/pm_nameservice_test.cc', | |
636 ], | |
637 'test_files': [ | |
638 'nameservice/pm_nameservice_test.html', | |
639 ], | |
640 }, | |
641 'dependencies': [ | |
642 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | |
643 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', | |
644 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', | |
645 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:srpc_lib', | |
646 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform_lib', | |
647 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio_lib', | |
648 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_lib', | |
649 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | |
650 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib', | |
651 'nacl_ppapi_util', | |
652 ], | |
653 }, | |
654 { | |
655 'target_name': 'ppapi_extension_mime_handler', | 615 'target_name': 'ppapi_extension_mime_handler', |
656 'type': 'none', | 616 'type': 'none', |
657 'variables': { | 617 'variables': { |
658 'nexe_target': 'ppapi_extension_mime_handler', | 618 'nexe_target': 'ppapi_extension_mime_handler', |
659 'build_newlib': 1, | 619 'build_newlib': 1, |
660 'build_glibc': 0, | 620 'build_glibc': 0, |
661 'build_pnacl_newlib': 0, | 621 'build_pnacl_newlib': 0, |
662 'nexe_destination_dir': 'nacl_test_data', | 622 'nexe_destination_dir': 'nacl_test_data', |
663 'link_flags': [ | 623 'link_flags': [ |
664 '-lppapi', | 624 '-lppapi', |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1085 'files': [ | 1045 'files': [ |
1086 '>@(test_files)', | 1046 '>@(test_files)', |
1087 ], | 1047 ], |
1088 }, | 1048 }, |
1089 ], | 1049 ], |
1090 }, | 1050 }, |
1091 ], | 1051 ], |
1092 }], | 1052 }], |
1093 ], | 1053 ], |
1094 } | 1054 } |
OLD | NEW |