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

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: Rebase Created 6 years, 7 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 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 # testing environment here. 1163 # testing environment here.
1164 'copies': [ 1164 'copies': [
1165 { 1165 {
1166 'destination': '>(destination_dir)', 1166 'destination': '>(destination_dir)',
1167 'files': [ 1167 'files': [
1168 '>@(test_files)', 1168 '>@(test_files)',
1169 ], 1169 ],
1170 }, 1170 },
1171 ], 1171 ],
1172 }, 1172 },
1173 {
1174 'target_name': 'nonsfi_irt_manifest_file',
1175 'type': 'none',
1176 'variables': {
1177 'nexe_target': 'irt_manifest_file',
1178 'enable_x86_32': 0,
1179 'enable_x86_64': 0,
1180 'enable_x86_32_nonsfi': 1,
1181 'build_pnacl_newlib': 1,
1182 # create_nmf.py doesn't support nonsfi.
1183 # TODO(crbug.com/368949): Clean this up after nonsfi support on
1184 # create_nmf.py.
1185 'generate_nmf': 0,
1186 'nexe_destination_dir': 'nacl_test_data',
1187 'link_flags': [
1188 '-lnacl_ppapi_util',
1189 '-lppapi_cpp',
1190 '-lppapi',
1191 '-lnacl',
1192 ],
1193 'sources': [
1194 'manifest_file/irt_manifest_file_test.cc',
1195 ],
1196 'test_files': [
1197 # TODO(ncbray) move into chrome/test/data/nacl when all tests are
1198 # converted.
1199 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nac ltest.js',
1200 'manifest_file/irt_manifest_file.nmf',
1201 'manifest_file/irt_manifest_file_test.html',
1202 'manifest_file/test_file.txt',
1203 ],
1204 },
1205 'dependencies': [
1206 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
1207 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
1208 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib',
1209 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib',
1210 'nacl_ppapi_util',
1211 ],
1212 },
1173 ], 1213 ],
1174 }], 1214 }],
1175 ], 1215 ],
1176 } 1216 }
OLDNEW
« no previous file with comments | « chrome/test/data/nacl/manifest_file/irt_manifest_file.nmf ('k') | chrome/test/nacl/nacl_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698