| 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 Import('env') | 6 Import('env') |
| 7 import os | 7 import os |
| 8 | 8 |
| 9 if env.Bit('nacl_glibc'): | 9 if env.Bit('nacl_glibc'): |
| 10 Return() | 10 Return() |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'test_file_system.cc', | 45 'test_file_system.cc', |
| 46 'test_memory.cc', | 46 'test_memory.cc', |
| 47 'test_mouse_cursor.cc', | 47 'test_mouse_cursor.cc', |
| 48 'test_graphics_2d.cc', | 48 'test_graphics_2d.cc', |
| 49 'test_image_data.cc', | 49 'test_image_data.cc', |
| 50 'test_paint_aggregator.cc', | 50 'test_paint_aggregator.cc', |
| 51 # test_post_message.cc relies on synchronous scripting, which is not | 51 # test_post_message.cc relies on synchronous scripting, which is not |
| 52 # available for untrusted tests. | 52 # available for untrusted tests. |
| 53 # Does not compile under nacl (uses private interface ExecuteScript). | 53 # Does not compile under nacl (uses private interface ExecuteScript). |
| 54 #'test_post_message.cc', | 54 #'test_post_message.cc', |
| 55 'test_scrollbar.cc', | |
| 56 # Not yet proxied. | 55 # Not yet proxied. |
| 57 #'test_transport.cc', | 56 #'test_transport.cc', |
| 58 # Not yet proxied. | 57 # Not yet proxied. |
| 59 #'test_uma.cc', | 58 #'test_uma.cc', |
| 60 # Activating the URL loader test requires a test httpd that | 59 # Activating the URL loader test requires a test httpd that |
| 61 # understands HTTP POST, which our current httpd.py doesn't. | 60 # understands HTTP POST, which our current httpd.py doesn't. |
| 62 # It also requires deactivating the tests that use FileIOTrusted | 61 # It also requires deactivating the tests that use FileIOTrusted |
| 63 # when running in NaCl. | 62 # when running in NaCl. |
| 64 #'test_url_loader.cc', | 63 #'test_url_loader.cc', |
| 65 # Does not compile under nacl (uses VarPrivate). | 64 # Does not compile under nacl (uses VarPrivate). |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 env.Publish(ppapi_tests_target, 'run', | 105 env.Publish(ppapi_tests_target, 'run', |
| 107 ['$SOURCE_ROOT/ppapi/tests/test_url_loader_data/*'], | 106 ['$SOURCE_ROOT/ppapi/tests/test_url_loader_data/*'], |
| 108 subdir='test_url_loader_data') | 107 subdir='test_url_loader_data') |
| 109 | 108 |
| 110 env.Publish(ppapi_tests_target, 'run', | 109 env.Publish(ppapi_tests_target, 'run', |
| 111 [ppapi_tests_nexe, | 110 [ppapi_tests_nexe, |
| 112 '$SOURCE_ROOT/ppapi/tests/test_case.html', | 111 '$SOURCE_ROOT/ppapi/tests/test_case.html', |
| 113 'test_case.nmf', | 112 'test_case.nmf', |
| 114 '$SOURCE_ROOT/ppapi/tests/test_image_data', | 113 '$SOURCE_ROOT/ppapi/tests/test_image_data', |
| 115 '$SOURCE_ROOT/ppapi/tests/test_page.css']) | 114 '$SOURCE_ROOT/ppapi/tests/test_page.css']) |
| OLD | NEW |