| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 trusted_scons_files = [ | 6 trusted_scons_files = [ |
| 7 'src/shared/ppapi/build.scons', | 7 'src/shared/ppapi/build.scons', |
| 8 'src/shared/ppapi_proxy/build.scons', | 8 'src/shared/ppapi_proxy/build.scons', |
| 9 'src/trusted/plugin/build.scons', | 9 'src/trusted/plugin/build.scons', |
| 10 'tests/ppapi_geturl/build.scons', | 10 'tests/ppapi_geturl/build.scons', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 | 28 |
| 29 nonvariant_test_scons_files = [ | 29 nonvariant_test_scons_files = [ |
| 30 'tests/breakpad_crash_test/nacl.scons', | 30 'tests/breakpad_crash_test/nacl.scons', |
| 31 'tests/ppapi/nacl.scons', | 31 'tests/ppapi/nacl.scons', |
| 32 'tests/ppapi_browser/bad/nacl.scons', | 32 'tests/ppapi_browser/bad/nacl.scons', |
| 33 'tests/ppapi_browser/crash/nacl.scons', | 33 'tests/ppapi_browser/crash/nacl.scons', |
| 34 'tests/ppapi_browser/extension_mime_handler/nacl.scons', | 34 'tests/ppapi_browser/extension_mime_handler/nacl.scons', |
| 35 'tests/ppapi_browser/manifest/nacl.scons', | 35 'tests/ppapi_browser/manifest/nacl.scons', |
| 36 'tests/ppapi_browser/ppb_audio/nacl.scons', | 36 'tests/ppapi_browser/ppb_audio/nacl.scons', |
| 37 'tests/ppapi_browser/ppb_core/nacl.scons', | |
| 38 'tests/ppapi_browser/ppb_dev/nacl.scons', | 37 'tests/ppapi_browser/ppb_dev/nacl.scons', |
| 39 'tests/ppapi_browser/ppb_file_system/nacl.scons', | 38 'tests/ppapi_browser/ppb_file_system/nacl.scons', |
| 40 'tests/ppapi_browser/ppb_graphics2d/nacl.scons', | 39 'tests/ppapi_browser/ppb_graphics2d/nacl.scons', |
| 41 'tests/ppapi_browser/ppb_graphics3d/nacl.scons', | 40 'tests/ppapi_browser/ppb_graphics3d/nacl.scons', |
| 42 'tests/ppapi_browser/ppb_image_data/nacl.scons', | 41 'tests/ppapi_browser/ppb_image_data/nacl.scons', |
| 43 'tests/ppapi_browser/ppb_instance/nacl.scons', | 42 'tests/ppapi_browser/ppb_instance/nacl.scons', |
| 44 'tests/ppapi_browser/ppb_memory/nacl.scons', | 43 'tests/ppapi_browser/ppb_memory/nacl.scons', |
| 45 'tests/ppapi_browser/ppb_url_loader/nacl.scons', | 44 'tests/ppapi_browser/ppb_url_loader/nacl.scons', |
| 46 'tests/ppapi_browser/ppb_var/nacl.scons', | 45 'tests/ppapi_browser/ppb_var/nacl.scons', |
| 47 'tests/ppapi_browser/ppp_input_event/nacl.scons', | 46 'tests/ppapi_browser/ppp_input_event/nacl.scons', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 59 'tests/ppapi_gles_book/nacl.scons', | 58 'tests/ppapi_gles_book/nacl.scons', |
| 60 'tests/ppapi_messaging/nacl.scons', | 59 'tests/ppapi_messaging/nacl.scons', |
| 61 # Broken by Chrome change | 60 # Broken by Chrome change |
| 62 # http://code.google.com/p/nativeclient/issues/detail?id=2480 | 61 # http://code.google.com/p/nativeclient/issues/detail?id=2480 |
| 63 #'tests/ppapi_simple_tests/nacl.scons', | 62 #'tests/ppapi_simple_tests/nacl.scons', |
| 64 'tests/ppapi_test_example/nacl.scons', | 63 'tests/ppapi_test_example/nacl.scons', |
| 65 'tests/ppapi_test_lib/nacl.scons', | 64 'tests/ppapi_test_lib/nacl.scons', |
| 66 'tests/ppapi_tests/nacl.scons', | 65 'tests/ppapi_tests/nacl.scons', |
| 67 ] | 66 ] |
| 68 | 67 |
| OLD | NEW |