| 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 # This test uses ppapi_test_lib. | 6 # This test uses ppapi_test_lib. |
| 7 | 7 |
| 8 Import('env') | 8 Import('env') |
| 9 | 9 |
| 10 env.Prepend(CPPDEFINES=['XP_UNIX']) | 10 env.Prepend(CPPDEFINES=['XP_UNIX']) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 ['ppapi_ppb_url_request_info.html', | 29 ['ppapi_ppb_url_request_info.html', |
| 30 'ppapi_ppb_url_request_info.js']) | 30 'ppapi_ppb_url_request_info.js']) |
| 31 | 31 |
| 32 node = env.PPAPIBrowserTester( | 32 node = env.PPAPIBrowserTester( |
| 33 'ppapi_ppb_url_request_info_browser_test.out', | 33 'ppapi_ppb_url_request_info_browser_test.out', |
| 34 url='ppapi_ppb_url_request_info.html', | 34 url='ppapi_ppb_url_request_info.html', |
| 35 nmfs=['${TEST_DIR}/ppapi_ppb_url_request_info.nmf'], | 35 nmfs=['${TEST_DIR}/ppapi_ppb_url_request_info.nmf'], |
| 36 files=env.ExtractPublishedFiles(nexe), | 36 files=env.ExtractPublishedFiles(nexe), |
| 37 browser_flags=['--enable-pepper-testing']) | 37 browser_flags=['--enable-pepper-testing']) |
| 38 | 38 |
| 39 # This test is being deprecated and is no longer part of chrome_browser_tests |
| 40 # that are run automatically during nacl_intergration on the chrome bots. |
| 41 # It is still around for reference when fixing and porting TestAppendFileToBody. |
| 42 # see crbug.com/110242. |
| 39 env.AddNodeToTestSuite(node, | 43 env.AddNodeToTestSuite(node, |
| 40 ['chrome_browser_tests'], | 44 ['chrome_browser_tests'], |
| 41 'run_ppapi_ppb_url_request_info_browser_test', | 45 'run_ppapi_ppb_url_request_info_browser_test', |
| 42 is_broken=env.PPAPIBrowserTesterIsBroken()) | 46 is_broken=True) |
| OLD | NEW |