| 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 is a C PPAPI-based version of ../npapi_geturl. | |
| 7 # | |
| 8 # ppapi_geturl.html - test driver that loads the nexe and scripts it | 6 # ppapi_geturl.html - test driver that loads the nexe and scripts it |
| 9 # ppapi_geturl_success.html - to be url-loaded and displayed w/n driver html | 7 # ppapi_geturl_success.html - to be url-loaded and displayed w/n driver html |
| 10 # | 8 # |
| 11 # ppapi_geturl.cc - implementation of PPP interface | 9 # ppapi_geturl.cc - implementation of PPP interface |
| 12 # module.h/cc - implementation of PPP_Instance interface | 10 # module.h/cc - implementation of PPP_Instance interface |
| 13 # scriptable_object.h/cc - implementation of the scripting interface | 11 # scriptable_object.h/cc - implementation of the scripting interface |
| 14 # url_load_request.h/cc - url loading helper | 12 # url_load_request.h/cc - url loading helper |
| 15 | 13 |
| 16 Import('env') | 14 Import('env') |
| 17 | 15 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 url='ppapi_geturl.html', | 49 url='ppapi_geturl.html', |
| 52 nmfs=['${TEST_DIR}/ppapi_geturl.nmf'], | 50 nmfs=['${TEST_DIR}/ppapi_geturl.nmf'], |
| 53 files=env.ExtractPublishedFiles(nexe), | 51 files=env.ExtractPublishedFiles(nexe), |
| 54 args=['--allow_404'], | 52 args=['--allow_404'], |
| 55 ) | 53 ) |
| 56 | 54 |
| 57 env.AddNodeToTestSuite(node, | 55 env.AddNodeToTestSuite(node, |
| 58 ['chrome_browser_tests'], | 56 ['chrome_browser_tests'], |
| 59 'run_ppapi_geturl_browser_test', | 57 'run_ppapi_geturl_browser_test', |
| 60 is_broken=env.PPAPIBrowserTesterIsBroken()) | 58 is_broken=env.PPAPIBrowserTesterIsBroken()) |
| OLD | NEW |