OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 ) | 51 ) |
52 | 52 |
53 if env.Bit('windows'): | 53 if env.Bit('windows'): |
54 plugin_env.Append( | 54 plugin_env.Append( |
55 CPPDEFINES = ['XP_WIN', 'WIN32', '_WINDOWS'], | 55 CPPDEFINES = ['XP_WIN', 'WIN32', '_WINDOWS'], |
56 ) | 56 ) |
57 | 57 |
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 'module_ppapi.cc', | 62 'module_ppapi.cc', |
62 'nacl_subprocess.cc', | 63 'nacl_subprocess.cc', |
63 'nexe_arch.cc', | 64 'nexe_arch.cc', |
64 'plugin.cc', | 65 'plugin.cc', |
65 'pnacl_coordinator.cc', | 66 'pnacl_coordinator.cc', |
66 'pnacl_resources.cc', | 67 'pnacl_resources.cc', |
| 68 'pnacl_translate_thread.cc', |
67 'scriptable_plugin.cc', | 69 'scriptable_plugin.cc', |
68 'sel_ldr_launcher_chrome.cc', | 70 'sel_ldr_launcher_chrome.cc', |
69 'service_runtime.cc', | 71 'service_runtime.cc', |
70 'srpc_client.cc', | 72 'srpc_client.cc', |
71 'srpc_params.cc', | 73 'srpc_params.cc', |
72 'utility.cc', | 74 'utility.cc', |
73 ] | 75 ] |
74 | 76 |
75 if env.Bit('target_x86'): | 77 if env.Bit('target_x86'): |
76 common_inputs += ['arch_x86/sandbox_isa.cc'] | 78 common_inputs += ['arch_x86/sandbox_isa.cc'] |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 unittest_sources, | 196 unittest_sources, |
195 no_import_lib=True) | 197 no_import_lib=True) |
196 node = env.CommandTest('ppapi_plugin_unittest.out', | 198 node = env.CommandTest('ppapi_plugin_unittest.out', |
197 command=[unittest, | 199 command=[unittest, |
198 ppapi_plugin, | 200 ppapi_plugin, |
199 env['BUILD_ISA_NAME']]) | 201 env['BUILD_ISA_NAME']]) |
200 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest') | 202 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest') |
201 | 203 |
202 | 204 |
203 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM. | 205 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM. |
OLD | NEW |