| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2011 The Native Client Authors. All rights reserved. | 2 # Copyright 2011 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can | 3 # Use of this source code is governed by a BSD-style license that can |
| 4 # be found in the LICENSE file. | 4 # be found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 platform = env.get('TARGET_FULLARCH') | 8 platform = env.get('TARGET_FULLARCH') |
| 9 ppapi_example_events_nexe_name = 'ppapi_example_events_%s${PROGSUFFIX}' % platfo
rm | 9 ppapi_example_events_nexe_name = 'ppapi_example_events_%s${PROGSUFFIX}' % platfo
rm |
| 10 ppapi_user_main_nexe_name = 'ppapi_user_main_%s${PROGSUFFIX}' % platform | 10 ppapi_user_main_nexe_name = 'ppapi_user_main_%s${PROGSUFFIX}' % platform |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 # '_%s.nexe' % platform), | 72 # '_%s.nexe' % platform), |
| 73 # env.File('${STAGING_DIR}/ppapi_gles_book_texture_wrap.nmf')] | 73 # env.File('${STAGING_DIR}/ppapi_gles_book_texture_wrap.nmf')] |
| 74 ppapi_ppb_core_files = CreateDefaultDeps('ppapi_ppb_core') | 74 ppapi_ppb_core_files = CreateDefaultDeps('ppapi_ppb_core') |
| 75 ppapi_ppb_file_system_files = CreateDefaultDeps('ppapi_ppb_file_system') + [ | 75 ppapi_ppb_file_system_files = CreateDefaultDeps('ppapi_ppb_file_system') + [ |
| 76 env.File('${STAGING_DIR}/ppapi_ppb_file_system.js')] | 76 env.File('${STAGING_DIR}/ppapi_ppb_file_system.js')] |
| 77 ppapi_ppb_graphics2d_files = CreateDefaultDeps('ppapi_ppb_graphics2d') | 77 ppapi_ppb_graphics2d_files = CreateDefaultDeps('ppapi_ppb_graphics2d') |
| 78 ppapi_ppb_image_data_files = CreateDefaultDeps('ppapi_ppb_image_data') | 78 ppapi_ppb_image_data_files = CreateDefaultDeps('ppapi_ppb_image_data') |
| 79 ppapi_progress_events_files = CreateDefaultDeps('ppapi_progress_events') + [ | 79 ppapi_progress_events_files = CreateDefaultDeps('ppapi_progress_events') + [ |
| 80 env.File('${STAGING_DIR}/ppapi_progress_events.js')] | 80 env.File('${STAGING_DIR}/ppapi_progress_events.js')] |
| 81 ppapi_test_example_files = CreateDefaultDeps('ppapi_test_example') | 81 ppapi_test_example_files = CreateDefaultDeps('ppapi_test_example') |
| 82 ppapi_tests_files = [ | |
| 83 env.File('${STAGING_DIR}/ppapi_tests_%s${PROGSUFFIX}' % platform), | |
| 84 env.Dir('${STAGING_DIR}/test_url_loader_data/'), | |
| 85 env.File('${STAGING_DIR}/test_case.html'), | |
| 86 env.File('${STAGING_DIR}/test_case.nmf'), | |
| 87 env.File('${STAGING_DIR}/test_page.css')] | |
| 88 srpc_basic_files = [ | 82 srpc_basic_files = [ |
| 89 env.File('${STAGING_DIR}/' + srpc_test_nexe_name), | 83 env.File('${STAGING_DIR}/' + srpc_test_nexe_name), |
| 90 env.File('${STAGING_DIR}/srpc_basic.html'), | 84 env.File('${STAGING_DIR}/srpc_basic.html'), |
| 91 env.File('${STAGING_DIR}/srpc_test.nmf')] | 85 env.File('${STAGING_DIR}/srpc_test.nmf')] |
| 92 srpc_nrd_xfer_files = [ | 86 srpc_nrd_xfer_files = [ |
| 93 env.File('${STAGING_DIR}/' + srpc_nrd_client_nexe_name), | 87 env.File('${STAGING_DIR}/' + srpc_nrd_client_nexe_name), |
| 94 env.File('${STAGING_DIR}/srpc_nrd_client.nmf'), | 88 env.File('${STAGING_DIR}/srpc_nrd_client.nmf'), |
| 95 env.File('${STAGING_DIR}/' + srpc_nrd_server_nexe_name), | 89 env.File('${STAGING_DIR}/' + srpc_nrd_server_nexe_name), |
| 96 env.File('${STAGING_DIR}/srpc_nrd_server.nmf'), | 90 env.File('${STAGING_DIR}/srpc_nrd_server.nmf'), |
| 97 env.File('${STAGING_DIR}/srpc_nrd_xfer.html')] | 91 env.File('${STAGING_DIR}/srpc_nrd_xfer.html')] |
| (...skipping 27 matching lines...) Expand all Loading... |
| 125 # ppapi_gles_book_simple_texture_2d_files + | 119 # ppapi_gles_book_simple_texture_2d_files + |
| 126 # ppapi_gles_book_simple_texture_cubemap_files + | 120 # ppapi_gles_book_simple_texture_cubemap_files + |
| 127 # ppapi_gles_book_simple_vertex_shader_files + | 121 # ppapi_gles_book_simple_vertex_shader_files + |
| 128 # ppapi_gles_book_stencil_test_files + | 122 # ppapi_gles_book_stencil_test_files + |
| 129 # ppapi_gles_book_texture_wrap_files + | 123 # ppapi_gles_book_texture_wrap_files + |
| 130 ppapi_ppb_core_files + | 124 ppapi_ppb_core_files + |
| 131 ppapi_ppb_file_system_files + | 125 ppapi_ppb_file_system_files + |
| 132 ppapi_ppb_graphics2d_files + | 126 ppapi_ppb_graphics2d_files + |
| 133 ppapi_ppb_image_data_files + | 127 ppapi_ppb_image_data_files + |
| 134 ppapi_progress_events_files + | 128 ppapi_progress_events_files + |
| 135 ppapi_tests_files + | |
| 136 srpc_basic_files + | 129 srpc_basic_files + |
| 137 srpc_hw_files + | 130 srpc_hw_files + |
| 138 srpc_nrd_xfer_files] | 131 srpc_nrd_xfer_files] |
| 139 | 132 |
| 140 # surfaway.py | 133 # surfaway.py |
| 141 node = env.PyAutoTester( | 134 node = env.PyAutoTester( |
| 142 'pyauto_surfaway.out', | 135 'pyauto_surfaway.out', |
| 143 env.File('surfaway.py'), | 136 env.File('surfaway.py'), |
| 144 files=core_test_files, | 137 files=core_test_files, |
| 145 extra_chrome_flags=['--enable-pepper-testing']) | 138 extra_chrome_flags=['--enable-pepper-testing']) |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 'nacl_uma.out', | 213 'nacl_uma.out', |
| 221 env.File('nacl_uma.py'), | 214 env.File('nacl_uma.py'), |
| 222 files=uma_test_files, | 215 files=uma_test_files, |
| 223 extra_chrome_flags=['--enable-pepper-testing']) | 216 extra_chrome_flags=['--enable-pepper-testing']) |
| 224 # Can't test validation errors (partly_broken) in PNaCl. | 217 # Can't test validation errors (partly_broken) in PNaCl. |
| 225 env.AddNodeToTestSuite(node, | 218 env.AddNodeToTestSuite(node, |
| 226 ['pyauto_tests'], | 219 ['pyauto_tests'], |
| 227 'run_nacl_uma_test', | 220 'run_nacl_uma_test', |
| 228 is_broken=env.PyAutoTesterIsBroken() or | 221 is_broken=env.PyAutoTesterIsBroken() or |
| 229 env.Bit('bitcode')) | 222 env.Bit('bitcode')) |
| OLD | NEW |