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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 'type': 'none', | 889 'type': 'none', |
890 'variables': { | 890 'variables': { |
891 'nexe_target': 'partly_invalid', | 891 'nexe_target': 'partly_invalid', |
892 'build_newlib': 1, | 892 'build_newlib': 1, |
893 'build_glibc': 0, | 893 'build_glibc': 0, |
894 'build_pnacl_newlib': 0, | 894 'build_pnacl_newlib': 0, |
895 'nexe_destination_dir': 'nacl_test_data', | 895 'nexe_destination_dir': 'nacl_test_data', |
896 'sources': [ | 896 'sources': [ |
897 '<(DEPTH)/native_client/tests/stubout_mode/partly_invalid.c', | 897 '<(DEPTH)/native_client/tests/stubout_mode/partly_invalid.c', |
898 ], | 898 ], |
899 'conditions': [ | |
900 ['target_arch=="mipsel"', { | |
901 'compile_flags': [ | |
902 '--pnacl-mips-bias', | |
903 '-arch', 'mips32', | |
904 '--pnacl-allow-translate', | |
905 ], | |
906 'link_flags': [ | |
907 '--pnacl-allow-native', | |
908 ], | |
909 }], | |
910 ], | |
911 }, | 899 }, |
912 }, | 900 }, |
913 ], | 901 ], |
914 }], | 902 }], |
915 | 903 |
916 # Tests for non-SFI mode. | 904 # Tests for non-SFI mode. |
917 ['OS=="linux"', { | 905 ['OS=="linux"', { |
918 'targets': [ | 906 'targets': [ |
919 { | 907 { |
920 'target_name': 'nonsfi_libc_free_nexe', | 908 'target_name': 'nonsfi_libc_free_nexe', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1032 'files': [ | 1020 'files': [ |
1033 '>@(test_files)', | 1021 '>@(test_files)', |
1034 ], | 1022 ], |
1035 }, | 1023 }, |
1036 ], | 1024 ], |
1037 }, | 1025 }, |
1038 ], | 1026 ], |
1039 }], | 1027 }], |
1040 ], | 1028 ], |
1041 } | 1029 } |
OLD | NEW |