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

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

Issue 249183004: Implement open_resource in non-SFI mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 # testing environment here. 1097 # testing environment here.
1098 'copies': [ 1098 'copies': [
1099 { 1099 {
1100 'destination': '>(destination_dir)', 1100 'destination': '>(destination_dir)',
1101 'files': [ 1101 'files': [
1102 '>@(test_files)', 1102 '>@(test_files)',
1103 ], 1103 ],
1104 }, 1104 },
1105 ], 1105 ],
1106 }, 1106 },
1107 {
1108 'target_name': 'nonsfi_irt_manifest_file',
1109 'type': 'none',
1110 'variables': {
1111 'nexe_target': 'irt_manifest_file',
1112 'enable_x86_32': 0,
1113 'enable_x86_64': 0,
1114 'enable_x86_32_nonsfi': 1,
1115 'build_pnacl_newlib': 1,
1116 # create_nmf.py doesn't support nonsfi.
Mark Seaborn 2014/04/26 00:18:59 How hard would it be to fix that, so that the Gyp
hidehiko 2014/04/28 08:44:27 It sounds not easy to me. create_nmf.py parses elf
Mark Seaborn 2014/04/30 21:20:58 OK, could you do a follow-on change to clean this
hidehiko 2014/05/01 05:20:30 Sure. Filed a bug, and added TODO with referring t
1117 'generate_nmf': 0,
1118 'nexe_destination_dir': 'nacl_test_data',
1119 'link_flags': [
1120 '-lnacl_ppapi_util',
1121 '-lppapi_cpp',
1122 '-lppapi',
1123 '-lnacl',
1124 ],
1125 'sources': [
1126 'manifest_file/irt_manifest_file_test.cc',
1127 ],
1128 'test_files': [
1129 # TODO(ncbray) move into chrome/test/data/nacl when all tests are
1130 # converted.
1131 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nac ltest.js',
1132 'manifest_file/irt_manifest_file.nmf',
1133 'manifest_file/irt_manifest_file_test.html',
1134 'manifest_file/test_file.txt',
1135 ],
1136 },
1137 'dependencies': [
1138 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
1139 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
1140 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
1141 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib',
1142 'nacl_ppapi_util',
1143 ],
1144 },
1107 ], 1145 ],
1108 }], 1146 }],
1109 ], 1147 ],
1110 } 1148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698