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

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

Issue 10918152: Port nacl_integration exit_status test to browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 'nacl_browser_test.gypi', 7 'nacl_browser_test.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'nacl_tests', 11 'target_name': 'shared_test_files',
12 'type': 'none',
13 'variables': {
14 'build_newlib': 1,
15 'build_glibc': 1,
16 'test_files': [
17 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nacltes t.js',
Mark Seaborn 2012/09/11 22:10:06 Nit: do you want a TODO to move this into chrome/t
Nick Bray (chromium) 2012/09/12 01:19:13 Done.
18 ],
19 },
20 },
21 {
22 'target_name': 'simple_test',
12 'type': 'none', 23 'type': 'none',
13 'variables': { 24 'variables': {
14 'nexe_target': 'simple', 25 'nexe_target': 'simple',
15 'build_newlib': 1, 26 'build_newlib': 1,
16 'build_glibc': 1, 27 'build_glibc': 1,
17 'sources': [ 28 'sources': [
18 'simple.cc', 29 'simple.cc',
19 ], 30 ],
20 'test_files': [ 31 'test_files': [
21 'nacl_load_test.html', 32 'nacl_load_test.html',
22 ], 33 ],
23 }, 34 },
24 }, 35 },
36 {
37 'target_name': 'exit_status_test',
38 'type': 'none',
39 'variables': {
40 'nexe_target': 'pm_exit_status_test',
41 'build_newlib': 1,
42 'build_glibc': 1,
43 'sources': [
44 'exit_status/pm_exit_status_test.cc',
45 ],
46 'test_files': [
47 'exit_status/pm_exit_status_test.html',
48 ],
49 },
50 },
25 ], 51 ],
26 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698