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

Side by Side Diff: ppapi/native_client/chrome_main.scons

Issue 14238013: Set up NaClChromeMainArgs number_of_cores member so apps can size threadpools appropriately (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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
OLDNEW
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 import json 6 import json
7 import os 7 import os
8 import shutil 8 import shutil
9 import sys 9 import sys
10 10
(...skipping 22 matching lines...) Expand all
33 ppapi_scons_files = {} 33 ppapi_scons_files = {}
34 ppapi_scons_files['trusted_scons_files'] = [] 34 ppapi_scons_files['trusted_scons_files'] = []
35 ppapi_scons_files['untrusted_irt_scons_files'] = [] 35 ppapi_scons_files['untrusted_irt_scons_files'] = []
36 36
37 ppapi_scons_files['nonvariant_test_scons_files'] = [ 37 ppapi_scons_files['nonvariant_test_scons_files'] = [
38 'tests/breakpad_crash_test/nacl.scons', 38 'tests/breakpad_crash_test/nacl.scons',
39 'tests/nacl_browser/browser_dynamic_library/nacl.scons', 39 'tests/nacl_browser/browser_dynamic_library/nacl.scons',
40 'tests/nacl_browser/manifest_file/nacl.scons', 40 'tests/nacl_browser/manifest_file/nacl.scons',
41 'tests/nacl_browser/nameservice/nacl.scons', 41 'tests/nacl_browser/nameservice/nacl.scons',
42 'tests/nacl_browser/postmessage_redir/nacl.scons', 42 'tests/nacl_browser/postmessage_redir/nacl.scons',
43 'tests/nacl_browser/sysconf_nprocessors/nacl.scons',
43 'tests/ppapi_browser/bad/nacl.scons', 44 'tests/ppapi_browser/bad/nacl.scons',
44 'tests/ppapi_browser/crash/nacl.scons', 45 'tests/ppapi_browser/crash/nacl.scons',
45 'tests/ppapi_browser/extension_mime_handler/nacl.scons', 46 'tests/ppapi_browser/extension_mime_handler/nacl.scons',
46 'tests/ppapi_browser/manifest/nacl.scons', 47 'tests/ppapi_browser/manifest/nacl.scons',
47 'tests/ppapi_browser/ppb_instance/nacl.scons', 48 'tests/ppapi_browser/ppb_instance/nacl.scons',
48 'tests/ppapi_browser/ppp_instance/nacl.scons', 49 'tests/ppapi_browser/ppp_instance/nacl.scons',
49 'tests/ppapi_test_lib/nacl.scons', 50 'tests/ppapi_test_lib/nacl.scons',
50 ] 51 ]
51 52
52 ppapi_scons_files['irt_variant_test_scons_files'] = [ 53 ppapi_scons_files['irt_variant_test_scons_files'] = [
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 629
629 pre_base_env.AddMethod(PPAPIGraphics3DIsBroken) 630 pre_base_env.AddMethod(PPAPIGraphics3DIsBroken)
630 631
631 632
632 def AddChromeFilesFromGroup(env, file_group): 633 def AddChromeFilesFromGroup(env, file_group):
633 env['BUILD_SCONSCRIPTS'] = ExtendFileList( 634 env['BUILD_SCONSCRIPTS'] = ExtendFileList(
634 env.get('BUILD_SCONSCRIPTS', []), 635 env.get('BUILD_SCONSCRIPTS', []),
635 ppapi_scons_files[file_group]) 636 ppapi_scons_files[file_group])
636 637
637 pre_base_env.AddMethod(AddChromeFilesFromGroup) 638 pre_base_env.AddMethod(AddChromeFilesFromGroup)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698