Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Side by Side Diff: chrome/test/data/nacl/nacl_test_data.gyp

Issue 1806403002: [MIPS] Fix build issue with browser tests when using mipsel-nacl-clang (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698