Chromium Code Reviews| 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 'build_newlib': 1, | |
| 78 'build_glibc': 0, | |
|
teravest
2014/05/21 16:49:42
Are you only building newlib just to make testing
jvoung (off chromium)
2014/05/21 21:10:56
No it's not just the testing time. There are some
| |
| 79 'build_pnacl_newlib': 0, | |
| 80 # Need a new directory to not clash with with other extension | |
| 81 # tests's files (e.g., manifest.json). | |
| 82 'nexe_destination_dir': 'nacl_test_data/extension_vcache_test', | |
| 83 'sources': [ | |
| 84 'simple.cc', | |
| 85 ], | |
| 86 'test_files': [ | |
| 87 # TODO(ncbray) move into chrome/test/data/nacl when all tests are | |
| 88 # converted. | |
| 89 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nacltes t.js', | |
| 90 'extension_validation_cache/extension_validation_cache.html', | |
| 91 'extension_validation_cache/extension_validation_cache.js', | |
| 92 # Turns the test data directory into an extension. | |
| 93 # Use a different nexe_destination_dir to isolate the files. | |
| 94 # Note that the .nexe names are embedded in this file. | |
| 95 'extension_validation_cache/manifest.json', | |
| 96 'load_util.js', | |
| 97 ], | |
| 98 }, | |
| 99 'dependencies': [ | |
| 100 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | |
| 101 ], | |
| 102 }, | |
| 103 { | |
| 73 'target_name': 'sysconf_nprocessors_onln_test', | 104 'target_name': 'sysconf_nprocessors_onln_test', |
| 74 'type': 'none', | 105 'type': 'none', |
| 75 'variables': { | 106 'variables': { |
| 76 'nexe_target': 'sysconf_nprocessors_onln_test', | 107 'nexe_target': 'sysconf_nprocessors_onln_test', |
| 77 'build_newlib': 1, | 108 'build_newlib': 1, |
| 78 'build_glibc': 1, | 109 'build_glibc': 1, |
| 79 'build_pnacl_newlib': 1, | 110 'build_pnacl_newlib': 1, |
| 80 'nexe_destination_dir': 'nacl_test_data', | 111 'nexe_destination_dir': 'nacl_test_data', |
| 81 'sources': [ | 112 'sources': [ |
| 82 'sysconf_nprocessors_onln/sysconf_nprocessors_onln_test.cc', | 113 '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', | 1238 '<(DEPTH)/ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', |
| 1208 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', | 1239 '<(DEPTH)/ppapi/native_client/native_client.gyp:ppapi_lib', |
| 1209 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib', | 1240 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib', |
| 1210 'nacl_ppapi_util', | 1241 'nacl_ppapi_util', |
| 1211 ], | 1242 ], |
| 1212 }, | 1243 }, |
| 1213 ], | 1244 ], |
| 1214 }], | 1245 }], |
| 1215 ], | 1246 ], |
| 1216 } | 1247 } |
| OLD | NEW |