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 19 matching lines...) Expand all Loading... | |
30 'test_struct_sizes.c', | 30 'test_struct_sizes.c', |
31 | 31 |
32 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) | 32 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
33 # Add/uncomment PPAPI interfaces below when they get proxied. | 33 # Add/uncomment PPAPI interfaces below when they get proxied. |
34 # Not yet proxied. | 34 # Not yet proxied. |
35 #'test_broker.cc', | 35 #'test_broker.cc', |
36 # Not yet proxied. | 36 # Not yet proxied. |
37 #'test_buffer.cc', | 37 #'test_buffer.cc', |
38 # Not yet proxied. | 38 # Not yet proxied. |
39 #'test_char_set.cc', | 39 #'test_char_set.cc', |
40 'test_cursor_control.cc', | 40 'test_mouse_cursor.cc', |
dmichael (off chromium)
2012/03/26 17:43:17
nit: alphabetical
| |
41 # Fails in DeleteDirectoryRecursively. | 41 # Fails in DeleteDirectoryRecursively. |
42 # BUG: http://code.google.com/p/nativeclient/issues/detail?id=2107 | 42 # BUG: http://code.google.com/p/nativeclient/issues/detail?id=2107 |
43 #'test_directory_reader.cc', | 43 #'test_directory_reader.cc', |
44 'test_file_io.cc', | 44 'test_file_io.cc', |
45 'test_file_ref.cc', | 45 'test_file_ref.cc', |
46 'test_file_system.cc', | 46 'test_file_system.cc', |
47 'test_memory.cc', | 47 'test_memory.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', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 env.Publish(ppapi_tests_target, 'run', | 106 env.Publish(ppapi_tests_target, 'run', |
107 ['$SOURCE_ROOT/ppapi/tests/test_url_loader_data/*'], | 107 ['$SOURCE_ROOT/ppapi/tests/test_url_loader_data/*'], |
108 subdir='test_url_loader_data') | 108 subdir='test_url_loader_data') |
109 | 109 |
110 env.Publish(ppapi_tests_target, 'run', | 110 env.Publish(ppapi_tests_target, 'run', |
111 [ppapi_tests_nexe, | 111 [ppapi_tests_nexe, |
112 '$SOURCE_ROOT/ppapi/tests/test_case.html', | 112 '$SOURCE_ROOT/ppapi/tests/test_case.html', |
113 'test_case.nmf', | 113 'test_case.nmf', |
114 '$SOURCE_ROOT/ppapi/tests/test_image_data', | 114 '$SOURCE_ROOT/ppapi/tests/test_image_data', |
115 '$SOURCE_ROOT/ppapi/tests/test_page.css']) | 115 '$SOURCE_ROOT/ppapi/tests/test_page.css']) |
OLD | NEW |