Index: build/android/test_runner.gypi |
diff --git a/build/android/test_runner.gypi b/build/android/test_runner.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2bd414790c5437be4f016c5d870bded300cd48c2 |
--- /dev/null |
+++ b/build/android/test_runner.gypi |
@@ -0,0 +1,71 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+# Generates a script in the output bin directory which runs the test |
+# target using the test runner script in build/android/pylib/test_runner.py. |
+# |
+# To use this, include this file in a gtest or instrumentation test target. |
jbudorick
2015/05/01 15:59:16
This should document the required and optional var
|
+# { |
+# 'target_name': 'gtest', |
+# 'type': 'none', |
+# 'variables': { |
+# 'test_type': 'gtest', # string |
+# 'test_suite_name': 'gtest_suite' # string |
+# 'isolate_file': 'path/to/gtest.isolate' # string |
+# }, |
+# 'includes': ['path/to/this/gypi/file'], |
+# } |
+# |
+# { |
+# 'target_name': 'instrumentation_apk', |
+# 'type': 'none', |
+# 'variables': { |
+# 'test_type': 'instrumentation', # string |
+# 'apk_name': 'TestApk' # string |
+# 'isolate_file': 'path/to/instrumentation_test.isolate' # string |
+# }, |
+# 'includes': ['path/to/this/gypi/file'], |
+# } |
+# |
+ |
+{ |
+ 'variables': { |
+ 'variables': { |
+ 'isolate_file%': '', |
+ }, |
+ 'test_runner_args': ['--verbose', '--output-directory', '<(PRODUCT_DIR)'], |
jbudorick
2015/05/01 15:59:16
I'm not sure we want to include --verbose by defau
cjhopman
2015/05/01 17:40:10
Yeah, I'd drop --verbose from the defaults
|
+ 'conditions': [ |
+ ['test_type == "gtest"', { |
+ 'test_runner_args': ['--suite', '<(test_suite_name)'], |
+ 'script_name': 'run_<(test_suite_name)', |
+ }], |
+ ['test_type == "instrumentation"', { |
+ 'test_runner_args': ['--test-apk', '<(apk_name)'], |
+ 'script_name': 'run_<(apk_name)', |
+ }], |
+ ['isolate_file != ""', { |
+ 'test_runner_args': ['--isolate-file-path', '<(isolate_file)'] |
+ }], |
+ ], |
+ }, |
+ 'actions': [ |
+ { |
jbudorick
2015/05/01 15:59:16
nit: this needs to be indented
|
+ 'action_name': 'create_test_runner_script_<(script_name)', |
+ 'message': 'Creating test runner script <(script_name)', |
+ 'variables': { |
+ 'script_output_path': '<(PRODUCT_DIR)/bin/<(script_name)', |
+ }, |
+ 'inputs': [ |
+ '<(DEPTH)/build/android/gyp/create_test_runner_script.py', |
+ ], |
+ 'outputs': [ |
+ '<(script_output_path)' |
+ ], |
+ 'action': [ |
+ 'python', '<(DEPTH)/build/android/gyp/create_test_runner_script.py', |
+ '--script-output-path=<(script_output_path)', |
+ '<(test_type)', '<@(test_runner_args)', |
+ ], |
+ }], |
+} |