Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: ppapi/native_client/src/trusted/plugin/build.scons

Issue 10815080: Add an interface for nacl to create delete-on-close temp files, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert buildbot hack Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 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
11 if not env.Bit('mac'): 11 if not env.Bit('mac'):
12 env['COMPONENT_STATIC'] = False 12 env['COMPONENT_STATIC'] = False
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 68 'pnacl_streaming_translate_thread.cc',
69 'pnacl_translate_thread.cc', 69 'pnacl_translate_thread.cc',
70 'scriptable_plugin.cc', 70 'scriptable_plugin.cc',
71 'sel_ldr_launcher_chrome.cc', 71 'sel_ldr_launcher_chrome.cc',
72 'service_runtime.cc', 72 'service_runtime.cc',
73 'srpc_client.cc', 73 'srpc_client.cc',
74 'srpc_params.cc', 74 'srpc_params.cc',
75 'temporary_file.cc',
75 'utility.cc', 76 'utility.cc',
76 ] 77 ]
77 78
78 if env.Bit('target_x86'): 79 if env.Bit('target_x86'):
79 common_inputs += ['arch_x86/sandbox_isa.cc'] 80 common_inputs += ['arch_x86/sandbox_isa.cc']
80 elif env.Bit('target_arm'): 81 elif env.Bit('target_arm'):
81 common_inputs += ['arch_arm/sandbox_isa.cc'] 82 common_inputs += ['arch_arm/sandbox_isa.cc']
82 else: 83 else:
83 # Unrecognized architecture - this is a build failure. 84 # Unrecognized architecture - this is a build failure.
84 print "Unrecognized architecture: %s" % env['TARGET_ARCHITECTURE'] 85 print "Unrecognized architecture: %s" % env['TARGET_ARCHITECTURE']
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 unittest_sources, 198 unittest_sources,
198 no_import_lib=True) 199 no_import_lib=True)
199 node = env.CommandTest('ppapi_plugin_unittest.out', 200 node = env.CommandTest('ppapi_plugin_unittest.out',
200 command=[unittest, 201 command=[unittest,
201 ppapi_plugin, 202 ppapi_plugin,
202 env['BUILD_ISA_NAME']]) 203 env['BUILD_ISA_NAME']])
203 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest') 204 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ppapi_plugin_unittest')
204 205
205 206
206 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM. 207 # TODO(polina,sehr): add a test for the PPAPI plugin on ARM.
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/local_temp_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698