| 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 { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'build_newlib': 1, | 43 'build_newlib': 1, |
| 44 'build_glibc': 1, | 44 'build_glibc': 1, |
| 45 'sources': [ | 45 'sources': [ |
| 46 'exit_status/pm_exit_status_test.cc', | 46 'exit_status/pm_exit_status_test.cc', |
| 47 ], | 47 ], |
| 48 'test_files': [ | 48 'test_files': [ |
| 49 'exit_status/pm_exit_status_test.html', | 49 'exit_status/pm_exit_status_test.html', |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 }, | 52 }, |
| 53 # Legacy NaCl PPAPI interface tests being here. |
| 54 { |
| 55 'target_name': 'ppapi_test_lib', |
| 56 'type': 'none', |
| 57 'variables': { |
| 58 'nlib_target': 'libppapi_test_lib.a', |
| 59 'nso_target': 'libppapi_test_lib.so', |
| 60 'build_newlib': 1, |
| 61 'build_glibc': 1, |
| 62 'sources': [ |
| 63 # TODO(ncbray) move these files once SCons no longer depends on them. |
| 64 '../../../../ppapi/native_client/tests/ppapi_test_lib/get_browser_inte
rface.cc', |
| 65 '../../../../ppapi/native_client/tests/ppapi_test_lib/internal_utils.c
c', |
| 66 '../../../../ppapi/native_client/tests/ppapi_test_lib/module_instance.
cc', |
| 67 '../../../../ppapi/native_client/tests/ppapi_test_lib/testable_callbac
k.cc', |
| 68 '../../../../ppapi/native_client/tests/ppapi_test_lib/test_interface.c
c', |
| 69 ] |
| 70 }, |
| 71 }, |
| 72 { |
| 73 'target_name': 'ppapi_ppb_core', |
| 74 'type': 'none', |
| 75 'variables': { |
| 76 'nexe_target': 'ppapi_ppb_core', |
| 77 'build_newlib': 1, |
| 78 'build_glibc': 1, |
| 79 'link_flags': [ |
| 80 '-lppapi', |
| 81 '-lppapi_test_lib', |
| 82 '-lplatform', |
| 83 '-lgio', |
| 84 ], |
| 85 'sources': [ |
| 86 'ppapi/ppb_core/ppapi_ppb_core.cc', |
| 87 ], |
| 88 'test_files': [ |
| 89 'ppapi/ppb_core/ppapi_ppb_core.html', |
| 90 ], |
| 91 }, |
| 92 'dependencies': [ |
| 93 'ppapi_test_lib', |
| 94 ], |
| 95 }, |
| 53 ], | 96 ], |
| 54 } | 97 } |
| OLD | NEW |