| 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 '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 # TODO(ncbray) move into chrome/test/data/nacl when all tests are |
| 18 # converted. |
| 19 '<(DEPTH)/ppapi/native_client/tools/browser_tester/browserdata/nacltes
t.js', |
| 20 ], |
| 21 }, |
| 22 }, |
| 23 { |
| 24 'target_name': 'simple_test', |
| 12 'type': 'none', | 25 'type': 'none', |
| 13 'variables': { | 26 'variables': { |
| 14 'nexe_target': 'simple', | 27 'nexe_target': 'simple', |
| 15 'build_newlib': 1, | 28 'build_newlib': 1, |
| 16 'build_glibc': 1, | 29 'build_glibc': 1, |
| 17 'sources': [ | 30 'sources': [ |
| 18 'simple.cc', | 31 'simple.cc', |
| 19 ], | 32 ], |
| 20 'test_files': [ | 33 'test_files': [ |
| 21 'nacl_load_test.html', | 34 'nacl_load_test.html', |
| 22 ], | 35 ], |
| 23 }, | 36 }, |
| 24 }, | 37 }, |
| 38 { |
| 39 'target_name': 'exit_status_test', |
| 40 'type': 'none', |
| 41 'variables': { |
| 42 'nexe_target': 'pm_exit_status_test', |
| 43 'build_newlib': 1, |
| 44 'build_glibc': 1, |
| 45 'sources': [ |
| 46 'exit_status/pm_exit_status_test.cc', |
| 47 ], |
| 48 'test_files': [ |
| 49 'exit_status/pm_exit_status_test.html', |
| 50 ], |
| 51 }, |
| 52 }, |
| 25 ], | 53 ], |
| 26 } | 54 } |
| OLD | NEW |