OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # TODO(polina): for Mac build check if no longer need .r files and/or document | 6 # TODO(polina): for Mac build check if no longer need .r files and/or document |
7 # target browsers for each bundle target. | 7 # target browsers for each bundle target. |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 common_inputs = [ | 58 common_inputs = [ |
59 'file_downloader.cc', | 59 'file_downloader.cc', |
60 'json_manifest.cc', | 60 'json_manifest.cc', |
61 'local_temp_file.cc', | 61 'local_temp_file.cc', |
62 'module_ppapi.cc', | 62 'module_ppapi.cc', |
63 'nacl_subprocess.cc', | 63 'nacl_subprocess.cc', |
64 'nexe_arch.cc', | 64 'nexe_arch.cc', |
65 'plugin.cc', | 65 'plugin.cc', |
66 'pnacl_coordinator.cc', | 66 'pnacl_coordinator.cc', |
67 'pnacl_resources.cc', | 67 'pnacl_resources.cc', |
68 'pnacl_streaming_translate_thread.cc', | |
69 'pnacl_translate_thread.cc', | 68 'pnacl_translate_thread.cc', |
70 'scriptable_plugin.cc', | 69 'scriptable_plugin.cc', |
71 'sel_ldr_launcher_chrome.cc', | 70 'sel_ldr_launcher_chrome.cc', |
72 'service_runtime.cc', | 71 'service_runtime.cc', |
73 'srpc_client.cc', | 72 'srpc_client.cc', |
74 'srpc_params.cc', | 73 'srpc_params.cc', |
75 'temporary_file.cc', | 74 'temporary_file.cc', |
76 'utility.cc', | 75 'utility.cc', |
77 ] | 76 ] |
78 | 77 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 unittest_sources, | 197 unittest_sources, |
199 no_import_lib=True) | 198 no_import_lib=True) |
200 node = env.CommandTest('ppapi_plugin_unittest.out', | 199 node = env.CommandTest('ppapi_plugin_unittest.out', |
201 command=[unittest, | 200 command=[unittest, |
202 ppapi_plugin, | 201 ppapi_plugin, |
203 env['BUILD_ISA_NAME']]) | 202 env['BUILD_ISA_NAME']]) |
204 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest') | 203 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest') |
205 | 204 |
206 | 205 |
207 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM. | 206 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM. |
OLD | NEW |