OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 Import('env') |
| 6 |
| 7 ppapi_tests_nexe = env.ComponentProgram('ppapi_tests.nexe', |
| 8 Glob('*.cc'), |
| 9 EXTRA_LIBS=['ppruntime', |
| 10 'ppapi_cpp', |
| 11 'pthread', |
| 12 'srpc']) |
| 13 # Note that the html is required to run this program. |
| 14 # To run, load page with mode=nacl search string: |
| 15 # http://localhost:5103/scons-out/nacl-x86-32/staging/test_case.html?mode=nacl |
| 16 env.Publish('ppapi_tests.nexe', 'run', |
| 17 ['test_case.html', |
| 18 'test_image_data', |
| 19 'test_page.css', |
| 20 'test_url_loader_data']) |
| 21 |
OLD | NEW |