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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'nexe_destination_dir': 'nacl_test_data', | 63 'nexe_destination_dir': 'nacl_test_data', |
64 'sources': [ | 64 'sources': [ |
65 'exit_status/pm_exit_status_test.cc', | 65 'exit_status/pm_exit_status_test.cc', |
66 ], | 66 ], |
67 'test_files': [ | 67 'test_files': [ |
68 'exit_status/pm_exit_status_test.html', | 68 'exit_status/pm_exit_status_test.html', |
69 ], | 69 ], |
70 }, | 70 }, |
71 }, | 71 }, |
72 { | 72 { |
| 73 'target_name': 'extension_validation_cache', |
| 74 'type': 'none', |
| 75 'variables': { |
| 76 'nexe_target': 'extension_validation_cache', |
| 77 # The test currently only has the test expectations for the |
| 78 # newlib case (# validation queries/settings), and has also |
| 79 # hardcoded the newlib variant's directory path for the unpacked ext. |
| 80 'build_newlib': 1, |
| 81 'build_glibc': 0, |
| 82 'build_pnacl_newlib': 0, |
| 83 # Need a new directory to not clash with with other extension |
| 84 # tests's files (e.g., manifest.json). |
| 85 'nexe_destination_dir': 'nacl_test_data/extension_vcache_test', |
| 86 'sources': [ |
| 87 'simple.cc', |
| 88 ], |
| 89 'test_files': [ |
| 90 # TODO(ncbray) move into chrome/test/data/nacl when all tests are |
| 91 # converted. |
| 92 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nacltes
t.js', |
| 93 'extension_validation_cache/extension_validation_cache.html', |
| 94 'extension_validation_cache/extension_validation_cache.js', |
| 95 # Turns the test data directory into an extension. |
| 96 # Use a different nexe_destination_dir to isolate the files. |
| 97 # Note that the .nexe names are embedded in this file. |
| 98 'extension_validation_cache/manifest.json', |
| 99 'load_util.js', |
| 100 ], |
| 101 }, |
| 102 'dependencies': [ |
| 103 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 104 ], |
| 105 }, |
| 106 { |
73 'target_name': 'sysconf_nprocessors_onln_test', | 107 'target_name': 'sysconf_nprocessors_onln_test', |
74 'type': 'none', | 108 'type': 'none', |
75 'variables': { | 109 'variables': { |
76 'nexe_target': 'sysconf_nprocessors_onln_test', | 110 'nexe_target': 'sysconf_nprocessors_onln_test', |
77 'build_newlib': 1, | 111 'build_newlib': 1, |
78 'build_glibc': 1, | 112 'build_glibc': 1, |
79 'build_pnacl_newlib': 1, | 113 'build_pnacl_newlib': 1, |
80 'nexe_destination_dir': 'nacl_test_data', | 114 'nexe_destination_dir': 'nacl_test_data', |
81 'sources': [ | 115 'sources': [ |
82 'sysconf_nprocessors_onln/sysconf_nprocessors_onln_test.cc', | 116 'sysconf_nprocessors_onln/sysconf_nprocessors_onln_test.cc', |
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1207 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', | 1241 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', |
1208 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', | 1242 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', |
1209 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib', | 1243 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib', |
1210 'nacl_ppapi_util', | 1244 'nacl_ppapi_util', |
1211 ], | 1245 ], |
1212 }, | 1246 }, |
1213 ], | 1247 ], |
1214 }], | 1248 }], |
1215 ], | 1249 ], |
1216 } | 1250 } |
OLD | NEW |