| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Generates a script in the output bin directory which runs the test | 5 # Generates a script in the output bin directory which runs the test |
| 6 # target using the test runner script in build/android/pylib/test_runner.py. | 6 # target using the test runner script in build/android/pylib/test_runner.py. |
| 7 # | 7 # |
| 8 # To use this, include this file in a gtest or instrumentation test target. | 8 # To use this, include this file in a gtest or instrumentation test target. |
| 9 # { | 9 # { |
| 10 # 'target_name': 'gtest', | 10 # 'target_name': 'gtest', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'outputs': [ | 89 'outputs': [ |
| 90 '<(script_output_path)' | 90 '<(script_output_path)' |
| 91 ], | 91 ], |
| 92 'action': [ | 92 'action': [ |
| 93 'python', '<(DEPTH)/build/android/gyp/create_test_runner_script.py', | 93 'python', '<(DEPTH)/build/android/gyp/create_test_runner_script.py', |
| 94 '--script-output-path=<(script_output_path)', | 94 '--script-output-path=<(script_output_path)', |
| 95 '<(test_type)', '<@(test_runner_args)', | 95 '<(test_type)', '<@(test_runner_args)', |
| 96 ], | 96 ], |
| 97 }, | 97 }, |
| 98 ], | 98 ], |
| 99 'dependencies': [ |
| 100 '<(DEPTH)/build/android/setup.gyp:devil_chromium_config', |
| 101 ] |
| 99 } | 102 } |
| OLD | NEW |