| 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 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 23 matching lines...) Expand all Loading... |
| 34 for file_name in existing + additional: | 34 for file_name in existing + additional: |
| 35 if file_name in combined: | 35 if file_name in combined: |
| 36 print 'WARNING: two references to file %s in the build.' % file_name | 36 print 'WARNING: two references to file %s in the build.' % file_name |
| 37 combined.add(file_name) | 37 combined.add(file_name) |
| 38 return sorted(combined) | 38 return sorted(combined) |
| 39 | 39 |
| 40 ppapi_scons_files['nonvariant_test_scons_files'] = ExtendFileList( | 40 ppapi_scons_files['nonvariant_test_scons_files'] = ExtendFileList( |
| 41 ppapi_scons_files.get('nonvariant_test_scons_files', []), [ | 41 ppapi_scons_files.get('nonvariant_test_scons_files', []), [ |
| 42 'tests/nacl_browser/browser_dynamic_library/nacl.scons', | 42 'tests/nacl_browser/browser_dynamic_library/nacl.scons', |
| 43 'tests/nacl_browser/browser_startup_time/nacl.scons', | 43 'tests/nacl_browser/browser_startup_time/nacl.scons', |
| 44 'tests/nacl_browser/exit_status/nacl.scons', | |
| 45 'tests/nacl_browser/inbrowser_test_runner/nacl.scons', | 44 'tests/nacl_browser/inbrowser_test_runner/nacl.scons', |
| 46 'tests/nacl_browser/manifest_file/nacl.scons', | 45 'tests/nacl_browser/manifest_file/nacl.scons', |
| 47 'tests/nacl_browser/nameservice/nacl.scons', | 46 'tests/nacl_browser/nameservice/nacl.scons', |
| 48 'tests/nacl_browser/postmessage_redir/nacl.scons', | 47 'tests/nacl_browser/postmessage_redir/nacl.scons', |
| 49 ]) | 48 ]) |
| 50 | 49 |
| 51 ppapi_scons_files['irt_variant_test_scons_files'] = ExtendFileList( | 50 ppapi_scons_files['irt_variant_test_scons_files'] = ExtendFileList( |
| 52 ppapi_scons_files.get('irt_variant_test_scons_files', []), [ | 51 ppapi_scons_files.get('irt_variant_test_scons_files', []), [ |
| 53 # Disabled by Brad Chen 4 Sep to try to green Chromium | 52 # Disabled by Brad Chen 4 Sep to try to green Chromium |
| 54 # nacl_integration tests | 53 # nacl_integration tests |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 | 654 |
| 656 pre_base_env.AddMethod(PPAPIGraphics3DIsBroken) | 655 pre_base_env.AddMethod(PPAPIGraphics3DIsBroken) |
| 657 | 656 |
| 658 | 657 |
| 659 def AddChromeFilesFromGroup(env, file_group): | 658 def AddChromeFilesFromGroup(env, file_group): |
| 660 env['BUILD_SCONSCRIPTS'] = ExtendFileList( | 659 env['BUILD_SCONSCRIPTS'] = ExtendFileList( |
| 661 env.get('BUILD_SCONSCRIPTS', []), | 660 env.get('BUILD_SCONSCRIPTS', []), |
| 662 ppapi_scons_files[file_group]) | 661 ppapi_scons_files[file_group]) |
| 663 | 662 |
| 664 pre_base_env.AddMethod(AddChromeFilesFromGroup) | 663 pre_base_env.AddMethod(AddChromeFilesFromGroup) |
| OLD | NEW |