qsr | c6c612c | 2015-01-13 22:07:48 | [diff] [blame] | 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 |
| 3 | # found in the LICENSE file. |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 4 | |
| 5 | # ============================================================================== |
| 6 | # TEST SETUP |
| 7 | # ============================================================================== |
| 8 | |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 9 | import("//build/config/chromeos/ui_mode.gni") |
Mirko Bonadei | 4a0df43 | 2020-09-08 19:06:02 | [diff] [blame] | 10 | import("//build_overrides/build.gni") |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 11 | |
jcivelli | f4462a35 | 2017-01-10 04:45:59 | [diff] [blame] | 12 | if (is_android) { |
| 13 | import("//build/config/android/config.gni") |
James Cook | 209256f | 2018-12-07 18:40:50 | [diff] [blame] | 14 | import("//build/config/android/extract_unwind_tables.gni") |
jcivelli | f4462a35 | 2017-01-10 04:45:59 | [diff] [blame] | 15 | import("//build/config/android/rules.gni") |
Abhishek Arya | 2f5f734 | 2018-06-13 16:59:44 | [diff] [blame] | 16 | import("//build/config/sanitizers/sanitizers.gni") |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 17 | } else if (is_fuchsia) { |
Kevin Marshall | 184e909 | 2018-02-07 21:09:06 | [diff] [blame] | 18 | import("//build/config/chromecast_build.gni") |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 19 | import("//build/config/coverage/coverage.gni") |
Kevin Marshall | 55fd852 | 2019-10-04 22:47:01 | [diff] [blame] | 20 | import("//build/config/fuchsia/generate_runner_scripts.gni") |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 21 | import("//build/config/fuchsia/package.gni") |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 22 | import("//third_party/fuchsia-sdk/sdk/build/cmc.gni") |
Yuta Hijikata | c297545 | 2020-12-16 15:59:39 | [diff] [blame] | 23 | } else if (is_chromeos_ash) { |
Ben Pastene | 4c35c57 | 2018-04-30 23:21:48 | [diff] [blame] | 24 | import("//build/config/chromeos/rules.gni") |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 25 | import("//build/config/sanitizers/sanitizers.gni") |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 26 | import("//build/util/generate_wrapper.gni") |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 27 | } else if (is_ios) { |
Jeff Yoon | f7f4eb4 | 2020-03-06 18:55:36 | [diff] [blame] | 28 | import("//build/config/ios/ios_sdk.gni") |
| 29 | import("//build/config/ios/ios_test_runner_wrapper.gni") |
| 30 | import("//build/config/ios/rules.gni") |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 31 | } else { |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 32 | import("//build/config/sanitizers/sanitizers.gni") |
| 33 | import("//build/util/generate_wrapper.gni") |
| 34 | } |
| 35 | |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 36 | # Define a test as an executable (or apk on Android) with the "testonly" flag |
| 37 | # set. |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 38 | # Variable: |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 39 | # use_xvfb: (optional) whether to run the executable under Xvfb. |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 40 | # use_raw_android_executable: Use executable() rather than android_apk(). |
ynovikov | 389d9e44 | 2016-05-27 02:34:56 | [diff] [blame] | 41 | # use_native_activity: Test implements ANativeActivity_onCreate(). |
Mirko Bonadei | 15522bc | 2020-09-16 20:38:39 | [diff] [blame] | 42 | # is_xctest: (iOS, optional) whether to build the executable as XCTest. |
| 43 | # Similar to the GN arg 'enable_run_ios_unittests_with_xctest' but |
| 44 | # for build targets. |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 45 | template("test") { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 46 | testonly = true |
Mirko Bonadei | 15522bc | 2020-09-16 20:38:39 | [diff] [blame] | 47 | if (!is_ios) { |
| 48 | assert(!defined(invoker.is_xctest) || !invoker.is_xctest, |
| 49 | "is_xctest can be set only for iOS builds") |
| 50 | } |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 51 | if (is_android) { |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 52 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb) |
| 53 | |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 54 | _use_raw_android_executable = defined(invoker.use_raw_android_executable) && |
| 55 | invoker.use_raw_android_executable |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 56 | |
agrieve | 67855de | 2016-03-30 14:46:01 | [diff] [blame] | 57 | # output_name is used to allow targets with the same name but in different |
| 58 | # packages to still produce unique runner scripts. |
| 59 | _output_name = invoker.target_name |
mikecase | 56d80d7 | 2015-06-03 00:57:26 | [diff] [blame] | 60 | if (defined(invoker.output_name)) { |
agrieve | 67855de | 2016-03-30 14:46:01 | [diff] [blame] | 61 | _output_name = invoker.output_name |
mikecase | 56d80d7 | 2015-06-03 00:57:26 | [diff] [blame] | 62 | } |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 63 | |
agrieve | b355ad15 | 2016-04-19 03:45:23 | [diff] [blame] | 64 | _test_runner_target = "${_output_name}__test_runner_script" |
jbudorick | d29ecfa7 | 2016-11-18 22:45:42 | [diff] [blame] | 65 | _wrapper_script_vars = [ |
agrieve | e41ae190d | 2016-04-25 14:12:51 | [diff] [blame] | 66 | "ignore_all_data_deps", |
jbudorick | d29ecfa7 | 2016-11-18 22:45:42 | [diff] [blame] | 67 | "shard_timeout", |
agrieve | e41ae190d | 2016-04-25 14:12:51 | [diff] [blame] | 68 | ] |
agrieve | 3ac557f0 | 2016-04-12 15:52:00 | [diff] [blame] | 69 | |
jbudorick | ced2a25 | 2016-06-09 16:38:54 | [diff] [blame] | 70 | assert(_use_raw_android_executable || enable_java_templates) |
| 71 | |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 72 | if (_use_raw_android_executable) { |
| 73 | _exec_target = "${target_name}__exec" |
| 74 | _dist_target = "${target_name}__dist" |
| 75 | _exec_output = |
| 76 | "$target_out_dir/${invoker.target_name}/${invoker.target_name}" |
| 77 | |
| 78 | executable(_exec_target) { |
| 79 | # Configs will always be defined since we set_defaults in BUILDCONFIG.gn. |
| 80 | configs = [] |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 81 | forward_variables_from( |
| 82 | invoker, |
| 83 | "*", |
| 84 | TESTONLY_AND_VISIBILITY + _wrapper_script_vars + [ |
| 85 | "data_deps", |
| 86 | "extra_dist_files", |
| 87 | ]) |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 88 | |
| 89 | # Thanks to the set_defaults() for test(), configs are initialized with |
| 90 | # the default shared_library configs rather than executable configs. |
Thomas Anderson | 11c1d982 | 2019-01-15 06:32:59 | [diff] [blame] | 91 | configs -= [ |
| 92 | "//build/config:shared_library_config", |
| 93 | "//build/config/android:hide_all_but_jni", |
| 94 | ] |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 95 | configs += [ "//build/config:executable_config" ] |
| 96 | |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 97 | if (defined(invoker.data_deps)) { |
| 98 | data_deps = invoker.data_deps |
| 99 | } else { |
| 100 | data_deps = [] |
| 101 | } |
| 102 | if (!defined(data)) { |
| 103 | data = [] |
| 104 | } |
| 105 | data += [ "//testing/location_tags.json" ] |
| 106 | |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 107 | # Don't output to the root or else conflict with the group() below. |
| 108 | output_name = rebase_path(_exec_output, root_out_dir) |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | create_native_executable_dist(_dist_target) { |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 112 | dist_dir = "$root_out_dir/$target_name" |
| 113 | binary = _exec_output |
Nico Weber | 852532f | 2020-01-28 18:17:22 | [diff] [blame] | 114 | deps = [ ":$_exec_target" ] |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 115 | if (defined(invoker.extra_dist_files)) { |
| 116 | extra_files = invoker.extra_dist_files |
| 117 | } |
| 118 | } |
| 119 | } else { |
Andrew Grieve | c61b8dff | 2019-10-21 16:32:02 | [diff] [blame] | 120 | _library_target = "${target_name}__library" |
| 121 | _apk_target = "${target_name}__apk" |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 122 | _apk_specific_vars = [ |
| 123 | "android_manifest", |
agrieve | c6811b42 | 2016-06-23 02:25:09 | [diff] [blame] | 124 | "android_manifest_dep", |
Clark DuVall | 1bee532 | 2020-06-10 05:51:55 | [diff] [blame] | 125 | "app_as_shared_lib", |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 126 | "enable_multidex", |
Benoît Lizé | d8b8f74 | 2019-11-07 12:50:07 | [diff] [blame] | 127 | "product_config_java_packages", |
Tibor Goldschwendt | 95db95d | 2019-06-17 20:32:02 | [diff] [blame] | 128 | "min_sdk_version", |
huapengl | c35ba6e | 2016-05-25 23:08:07 | [diff] [blame] | 129 | "proguard_configs", |
| 130 | "proguard_enabled", |
Fred Mello | 0cc91c6 | 2019-08-24 01:53:45 | [diff] [blame] | 131 | "srcjar_deps", |
Tibor Goldschwendt | 95db95d | 2019-06-17 20:32:02 | [diff] [blame] | 132 | "target_sdk_version", |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 133 | "use_default_launcher", |
ynovikov | 389d9e44 | 2016-05-27 02:34:56 | [diff] [blame] | 134 | "use_native_activity", |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 135 | ] |
Siddhartha | 764226b | 2018-03-13 02:32:55 | [diff] [blame] | 136 | |
| 137 | # Adds the unwind tables from unstripped binary as an asset file in the |
| 138 | # apk, if |add_unwind_tables_in_apk| is specified by the test. |
| 139 | if (defined(invoker.add_unwind_tables_in_apk) && |
| 140 | invoker.add_unwind_tables_in_apk) { |
| 141 | _unwind_table_asset_name = "${target_name}_unwind_assets" |
| 142 | unwind_table_asset(_unwind_table_asset_name) { |
Siddhartha | 764226b | 2018-03-13 02:32:55 | [diff] [blame] | 143 | library_target = _library_target |
Nico Weber | 852532f | 2020-01-28 18:17:22 | [diff] [blame] | 144 | deps = [ ":$_library_target" ] |
Siddhartha | 764226b | 2018-03-13 02:32:55 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 148 | shared_library(_library_target) { |
| 149 | # Configs will always be defined since we set_defaults in BUILDCONFIG.gn. |
| 150 | configs = [] # Prevent list overwriting warning. |
| 151 | configs = invoker.configs |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 152 | |
jbudorick | d29ecfa7 | 2016-11-18 22:45:42 | [diff] [blame] | 153 | forward_variables_from( |
| 154 | invoker, |
| 155 | "*", |
Peter Wen | 2052bd1 | 2020-12-03 20:15:07 | [diff] [blame] | 156 | [ "deps" ] + _apk_specific_vars + _wrapper_script_vars + |
| 157 | TESTONLY_AND_VISIBILITY) |
| 158 | |
| 159 | # Native targets do not need to depend on java targets. Filter them out |
| 160 | # so that the shared library can be built without needing to wait for |
| 161 | # dependent java targets. |
| 162 | deps = [] |
| 163 | if (defined(invoker.deps)) { |
| 164 | foreach(_dep, invoker.deps) { |
| 165 | _target_label = get_label_info(_dep, "label_no_toolchain") |
| 166 | if (filter_exclude([ _target_label ], java_target_patterns) != []) { |
| 167 | deps += [ _dep ] |
| 168 | } |
| 169 | } |
| 170 | } |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 171 | |
| 172 | if (!defined(invoker.use_default_launcher) || |
| 173 | invoker.use_default_launcher) { |
Tom Anderson | ce772fa | 2018-05-30 22:20:37 | [diff] [blame] | 174 | deps += [ "//testing/android/native_test:native_test_native_code" ] |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | unittest_apk(_apk_target) { |
Daniel Bratell | fdda465 | 2019-01-31 15:45:54 | [diff] [blame] | 178 | forward_variables_from(invoker, _apk_specific_vars) |
agrieve | 48bd27e | 2016-06-22 21:04:07 | [diff] [blame] | 179 | shared_library = ":$_library_target" |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 180 | apk_name = invoker.target_name |
| 181 | if (defined(invoker.output_name)) { |
| 182 | apk_name = invoker.output_name |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 183 | install_script_name = "install_${invoker.output_name}" |
| 184 | } |
agrieve | b355ad15 | 2016-04-19 03:45:23 | [diff] [blame] | 185 | |
Daniel Bratell | fdda465 | 2019-01-31 15:45:54 | [diff] [blame] | 186 | if (defined(invoker.deps)) { |
| 187 | deps = invoker.deps |
| 188 | } else { |
| 189 | deps = [] |
| 190 | } |
| 191 | |
jcivelli | f4462a35 | 2017-01-10 04:45:59 | [diff] [blame] | 192 | # Add the Java classes so that each target does not have to do it. |
| 193 | deps += [ "//base/test:test_support_java" ] |
| 194 | |
Siddhartha | 764226b | 2018-03-13 02:32:55 | [diff] [blame] | 195 | if (defined(_unwind_table_asset_name)) { |
| 196 | deps += [ ":${_unwind_table_asset_name}" ] |
| 197 | } |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 198 | } |
Andrew Grieve | e1dc23f | 2019-10-22 16:26:36 | [diff] [blame] | 199 | } |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 200 | |
Andrew Grieve | e1dc23f | 2019-10-22 16:26:36 | [diff] [blame] | 201 | test_runner_script(_test_runner_target) { |
| 202 | forward_variables_from(invoker, _wrapper_script_vars) |
estevenson | ce844392 | 2016-12-15 19:57:57 | [diff] [blame] | 203 | |
Andrew Grieve | e1dc23f | 2019-10-22 16:26:36 | [diff] [blame] | 204 | if (_use_raw_android_executable) { |
| 205 | executable_dist_dir = "$root_out_dir/$_dist_target" |
John Budorick | d5dccb2 | 2020-02-01 02:16:34 | [diff] [blame] | 206 | data_deps = [ ":$_exec_target" ] |
Andrew Grieve | e1dc23f | 2019-10-22 16:26:36 | [diff] [blame] | 207 | } else { |
| 208 | apk_target = ":$_apk_target" |
| 209 | incremental_apk = incremental_install |
Andrew Grieve | 7ca6de3 | 2019-10-18 03:57:47 | [diff] [blame] | 210 | |
| 211 | # Dep needed for the test runner .runtime_deps file to pick up data |
| 212 | # deps from the forward_variables_from(invoker, "*") on the library. |
Nico Weber | 852532f | 2020-01-28 18:17:22 | [diff] [blame] | 213 | data_deps = [ ":$_library_target" ] |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 214 | } |
Andrew Grieve | e1dc23f | 2019-10-22 16:26:36 | [diff] [blame] | 215 | test_name = _output_name |
| 216 | test_suite = _output_name |
| 217 | test_type = "gtest" |
mikecase | 56d80d7 | 2015-06-03 00:57:26 | [diff] [blame] | 218 | } |
| 219 | |
Andrew Grieve | 7ca6de3 | 2019-10-18 03:57:47 | [diff] [blame] | 220 | # Create a wrapper script rather than using a group() in order to ensure |
| 221 | # "ninja $target_name" always works. If this was a group(), then GN would |
| 222 | # not create a top-level alias for it if a target exists in another |
| 223 | # directory with the same $target_name. |
| 224 | # Also - bots run this script directly for "components_perftests". |
| 225 | generate_wrapper(target_name) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 226 | forward_variables_from(invoker, [ "visibility" ]) |
Andrew Grieve | 7ca6de3 | 2019-10-18 03:57:47 | [diff] [blame] | 227 | executable = "$root_build_dir/bin/run_$_output_name" |
| 228 | wrapper_script = "$root_build_dir/$_output_name" |
Nico Weber | 852532f | 2020-01-28 18:17:22 | [diff] [blame] | 229 | deps = [ ":$_test_runner_target" ] |
jbudorick | 686094f6 | 2017-05-04 21:52:40 | [diff] [blame] | 230 | if (_use_raw_android_executable) { |
Andrew Grieve | 7ca6de3 | 2019-10-18 03:57:47 | [diff] [blame] | 231 | deps += [ ":$_dist_target" ] |
jbudorick | 686094f6 | 2017-05-04 21:52:40 | [diff] [blame] | 232 | } else { |
Andrew Grieve | 7ca6de3 | 2019-10-18 03:57:47 | [diff] [blame] | 233 | # Dep needed for the swarming .isolate file to pick up data |
| 234 | # deps from the forward_variables_from(invoker, "*") on the library. |
| 235 | deps += [ |
| 236 | ":$_apk_target", |
| 237 | ":$_library_target", |
| 238 | ] |
agrieve | 62ab0028 | 2016-04-05 02:03:45 | [diff] [blame] | 239 | } |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 240 | |
| 241 | if (defined(invoker.data_deps)) { |
| 242 | data_deps = invoker.data_deps |
| 243 | } else { |
| 244 | data_deps = [] |
| 245 | } |
| 246 | data = [ "//testing/location_tags.json" ] |
agrieve | 1a02e58 | 2015-10-15 21:35:39 | [diff] [blame] | 247 | } |
Scott Graham | 4c4cdc5 | 2017-05-29 20:45:03 | [diff] [blame] | 248 | } else if (is_fuchsia) { |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 249 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb) |
| 250 | |
Scott Graham | 4c4cdc5 | 2017-05-29 20:45:03 | [diff] [blame] | 251 | _output_name = invoker.target_name |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 252 | _pkg_target = "${_output_name}_pkg" |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 253 | _exec_target = "${_output_name}__exec" |
Scott Graham | 4c4cdc5 | 2017-05-29 20:45:03 | [diff] [blame] | 254 | |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 255 | # TODO(1019938): make minimum_capabilities.test-cmx the default and have |
| 256 | # everything added via additional_manifests |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 257 | if (!defined(invoker.manifest)) { |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 258 | if (!defined(invoker.additional_manifests)) { |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 259 | manifest_fragments = [ "//build/config/fuchsia/tests-with-exec.cmx" ] |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 260 | } else { |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 261 | manifest_fragments = |
| 262 | [ "//build/config/fuchsia/test/minimum_capabilities.test-cmx" ] |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 263 | } |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 264 | } else { |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 265 | manifest_fragments = [ invoker.manifest ] |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 266 | } |
| 267 | |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 268 | if (defined(invoker.additional_manifests)) { |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 269 | manifest_fragments += invoker.additional_manifests |
Chong Gu | acf19a3 | 2021-03-10 01:07:41 | [diff] [blame] | 270 | } |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 271 | if (use_clang_coverage) { |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 272 | manifest_fragments += |
| 273 | [ "//build/config/fuchsia/add_DebugData_service.test-cmx" ] |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 274 | } |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 275 | combined_manifest = "${target_name}.test-cmx" |
| 276 | cmc_merge(combined_manifest) { |
| 277 | sources = manifest_fragments |
| 278 | output_name = target_name |
| 279 | } |
| 280 | manifest = "${target_out_dir}/${combined_manifest}" |
Chong Gu | 26908f4e | 2021-01-29 03:13:07 | [diff] [blame] | 281 | |
Kevin Marshall | 39b4aa8 | 2018-06-23 00:12:15 | [diff] [blame] | 282 | fuchsia_package_runner(target_name) { |
Dirk Pranke | d5e9a1b2 | 2020-10-28 22:52:59 | [diff] [blame] | 283 | is_test_exe = true |
Fabrice de Gans-Riberi | 041a652 | 2018-12-11 00:20:53 | [diff] [blame] | 284 | forward_variables_from(invoker, |
| 285 | [ |
| 286 | "use_test_server", |
| 287 | "package_deps", |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 288 | "visibility", |
Fabrice de Gans-Riberi | 041a652 | 2018-12-11 00:20:53 | [diff] [blame] | 289 | ]) |
Kevin Marshall | 39b4aa8 | 2018-06-23 00:12:15 | [diff] [blame] | 290 | runner_script = "//build/fuchsia/test_runner.py" |
| 291 | package = ":$_pkg_target" |
| 292 | package_name_override = _output_name |
Dimitri Glazkov | c95e6dd | 2018-08-24 23:39:42 | [diff] [blame] | 293 | |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 294 | data = [ "//testing/location_tags.json" ] |
Wez | dd593a5 | 2020-04-08 17:09:46 | [diff] [blame] | 295 | data_deps = [ "//testing/buildbot/filters:fuchsia_filters" ] |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 296 | } |
| 297 | |
Wez | abe2d75 | 2020-02-11 17:12:23 | [diff] [blame] | 298 | cr_fuchsia_package(_pkg_target) { |
Fabrice de Gans-Riberi | a16cac8 | 2019-06-03 19:03:20 | [diff] [blame] | 299 | binary = ":$_exec_target" |
| 300 | package_name_override = _output_name |
Chong Gu | 7ad57c2 | 2021-03-11 00:24:38 | [diff] [blame] | 301 | deps = [ ":$combined_manifest" ] |
Fabrice de Gans-Riberi | a16cac8 | 2019-06-03 19:03:20 | [diff] [blame] | 302 | } |
| 303 | |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 304 | executable(_exec_target) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 305 | forward_variables_from(invoker, "*", TESTONLY_AND_VISIBILITY) |
Kevin Marshall | f35fa5f | 2018-01-29 19:24:42 | [diff] [blame] | 306 | output_name = _exec_target |
Scott Graham | 4c4cdc5 | 2017-05-29 20:45:03 | [diff] [blame] | 307 | } |
dpranke | 2a29462 | 2015-08-07 05:23:01 | [diff] [blame] | 308 | } else if (is_ios) { |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 309 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb) |
Mirko Bonadei | 50e251d | 2020-09-14 18:05:46 | [diff] [blame] | 310 | _runtime_deps_file = "$root_out_dir/${target_name}.runtime_deps" |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 311 | |
Rohit Rao | f9b096d | 2019-09-09 22:26:23 | [diff] [blame] | 312 | declare_args() { |
| 313 | # Keep the unittest-as-xctest functionality defaulted to off until the |
| 314 | # bots are updated to handle it properly. |
| 315 | # TODO(crbug.com/1001667): Remove this arg once the iOS test runner |
| 316 | # supports running unittests with xctest. |
| 317 | enable_run_ios_unittests_with_xctest = false |
| 318 | } |
| 319 | |
sdefresne | 01285787 | 2016-03-16 10:55:37 | [diff] [blame] | 320 | _test_target = target_name |
Jeff Yoon | f7f4eb4 | 2020-03-06 18:55:36 | [diff] [blame] | 321 | _wrapper_output_name = "run_${target_name}" |
| 322 | ios_test_runner_wrapper(_wrapper_output_name) { |
| 323 | forward_variables_from(invoker, |
| 324 | [ |
| 325 | "data", |
Jeff Yoon | f7f4eb4 | 2020-03-06 18:55:36 | [diff] [blame] | 326 | "deps", |
| 327 | "executable_args", |
| 328 | "retries", |
| 329 | "shards", |
| 330 | ]) |
| 331 | |
| 332 | _root_build_dir = rebase_path("${root_build_dir}", root_build_dir) |
| 333 | |
| 334 | if (!defined(executable_args)) { |
| 335 | executable_args = [] |
| 336 | } |
| 337 | executable_args += [ |
| 338 | "--app", |
| 339 | "@WrappedPath(${_root_build_dir}/${_test_target}.app)", |
| 340 | ] |
| 341 | |
| 342 | wrapper_output_name = "${_wrapper_output_name}" |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 343 | |
| 344 | if (!defined(data)) { |
| 345 | data = [] |
| 346 | } |
| 347 | data += [ "//testing/location_tags.json" ] |
Jeff Yoon | f7f4eb4 | 2020-03-06 18:55:36 | [diff] [blame] | 348 | } |
| 349 | |
sdefresne | 01285787 | 2016-03-16 10:55:37 | [diff] [blame] | 350 | _resources_bundle_data = target_name + "_resources_bundle_data" |
| 351 | |
| 352 | bundle_data(_resources_bundle_data) { |
sdefresne | 047490e | 2016-07-22 08:49:34 | [diff] [blame] | 353 | visibility = [ ":$_test_target" ] |
Nico Weber | 852532f | 2020-01-28 18:17:22 | [diff] [blame] | 354 | sources = [ "//testing/gtest_ios/Default.png" ] |
| 355 | outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ] |
dpranke | 2a29462 | 2015-08-07 05:23:01 | [diff] [blame] | 356 | } |
| 357 | |
Mirko Bonadei | 15522bc | 2020-09-16 20:38:39 | [diff] [blame] | 358 | force_xctest = enable_run_ios_unittests_with_xctest || |
| 359 | (defined(invoker.is_xctest) && invoker.is_xctest) |
| 360 | |
| 361 | if (force_xctest) { |
Rohit Rao | f9b096d | 2019-09-09 22:26:23 | [diff] [blame] | 362 | ios_test_target_type = "ios_xctest_test" |
| 363 | } else { |
| 364 | ios_test_target_type = "ios_app_bundle" |
| 365 | } |
| 366 | |
| 367 | target(ios_test_target_type, _test_target) { |
dpranke | 2a29462 | 2015-08-07 05:23:01 | [diff] [blame] | 368 | testonly = true |
sdefresne | a828c28 | 2016-05-30 18:04:20 | [diff] [blame] | 369 | |
Mirko Bonadei | 15522bc | 2020-09-16 20:38:39 | [diff] [blame] | 370 | if (force_xctest && build_with_chromium) { |
Rohit Rao | f9b096d | 2019-09-09 22:26:23 | [diff] [blame] | 371 | xctest_module_target = "//base/test:google_test_runner" |
| 372 | } |
| 373 | |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 374 | forward_variables_from(invoker, "*", TESTONLY_AND_VISIBILITY) |
sdefresne | 9e147e0 | 2016-06-07 00:10:13 | [diff] [blame] | 375 | |
| 376 | # Provide sensible defaults in case invoker did not define any of those |
| 377 | # required variables. |
sdefresne | 05b97ca | 2016-06-08 07:19:46 | [diff] [blame] | 378 | if (!defined(info_plist) && !defined(info_plist_target)) { |
sdefresne | 9e147e0 | 2016-06-07 00:10:13 | [diff] [blame] | 379 | info_plist = "//testing/gtest_ios/unittest-Info.plist" |
| 380 | } |
sdefresne | 9e147e0 | 2016-06-07 00:10:13 | [diff] [blame] | 381 | |
Olivier Robin | 9689c56 | 2020-04-17 14:03:57 | [diff] [blame] | 382 | _gtest_bundle_id_suffix = "${target_name}" |
| 383 | xcode_product_bundle_id = "gtest.$_gtest_bundle_id_suffix" |
Justin Cohen | a819c11 | 2019-08-17 02:19:19 | [diff] [blame] | 384 | |
sdefresne | 9e147e0 | 2016-06-07 00:10:13 | [diff] [blame] | 385 | if (!defined(extra_substitutions)) { |
| 386 | extra_substitutions = [] |
| 387 | } |
Olivier Robin | 9689c56 | 2020-04-17 14:03:57 | [diff] [blame] | 388 | extra_substitutions += |
| 389 | [ "GTEST_BUNDLE_ID_SUFFIX=$_gtest_bundle_id_suffix" ] |
dpranke | 2a29462 | 2015-08-07 05:23:01 | [diff] [blame] | 390 | |
sdefresne | 047490e | 2016-07-22 08:49:34 | [diff] [blame] | 391 | if (!defined(bundle_deps)) { |
| 392 | bundle_deps = [] |
| 393 | } |
| 394 | bundle_deps += [ ":$_resources_bundle_data" ] |
Jeff Yoon | f7f4eb4 | 2020-03-06 18:55:36 | [diff] [blame] | 395 | |
| 396 | if (!defined(data_deps)) { |
| 397 | data_deps = [] |
| 398 | } |
| 399 | |
| 400 | # Include the generate_wrapper as part of data_deps |
| 401 | data_deps += [ ":${_wrapper_output_name}" ] |
Mirko Bonadei | 50e251d | 2020-09-14 18:05:46 | [diff] [blame] | 402 | write_runtime_deps = _runtime_deps_file |
dpranke | 2a29462 | 2015-08-07 05:23:01 | [diff] [blame] | 403 | } |
Yuta Hijikata | c297545 | 2020-12-16 15:59:39 | [diff] [blame] | 404 | } else if (is_chromeos_ash && cros_board != "") { |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 405 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb) |
| 406 | |
Ben Pastene | 1688203 | 2018-09-21 01:16:39 | [diff] [blame] | 407 | # Building for a cros board (ie: not linux-chromeos). |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 408 | |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 409 | _gen_runner_target = "${target_name}__runner" |
| 410 | _runtime_deps_file = |
| 411 | "$root_out_dir/gen.runtime/" + get_label_info(target_name, "dir") + |
| 412 | "/" + get_label_info(target_name, "name") + ".runtime_deps" |
| 413 | |
Ben Pastene | 4ab9865 | 2018-12-17 18:33:18 | [diff] [blame] | 414 | generate_runner_script(_gen_runner_target) { |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 415 | generated_script = "$root_build_dir/bin/run_" + invoker.target_name |
Ben Pastene | 1688203 | 2018-09-21 01:16:39 | [diff] [blame] | 416 | test_exe = invoker.target_name |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 417 | runtime_deps_file = _runtime_deps_file |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 418 | data = [ "//testing/location_tags.json" ] |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | executable(target_name) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 422 | forward_variables_from(invoker, "*", TESTONLY_AND_VISIBILITY) |
| 423 | forward_variables_from(invoker, [ "visibility" ]) |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 424 | if (!defined(deps)) { |
| 425 | deps = [] |
| 426 | } |
| 427 | if (!defined(data)) { |
| 428 | data = [] |
| 429 | } |
| 430 | |
Ben Pastene | 4104178 | 2019-02-16 04:21:58 | [diff] [blame] | 431 | # We use a special trigger script for CrOS hardware tests. |
| 432 | data += [ "//testing/trigger_scripts/chromeos_device_trigger.py" ] |
| 433 | |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 434 | output_name = target_name |
| 435 | write_runtime_deps = _runtime_deps_file |
| 436 | data += [ _runtime_deps_file ] |
Tom Anderson | ce772fa | 2018-05-30 22:20:37 | [diff] [blame] | 437 | deps += [ ":$_gen_runner_target" ] |
Benjamin Pastene | 3bce864e | 2018-04-14 01:16:32 | [diff] [blame] | 438 | } |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 439 | } else if (chromeos_is_browser_only) { |
| 440 | _runtime_deps_file = "$root_out_dir/${target_name}.runtime_deps" |
| 441 | _executable = target_name |
| 442 | _gen_runner_target = "${target_name}__runner" |
| 443 | |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 444 | if (defined(invoker.use_xvfb)) { |
| 445 | _use_xvfb = invoker.use_xvfb |
| 446 | } else { |
| 447 | _use_xvfb = false |
| 448 | } |
| 449 | |
Yuke Liao | d037abc | 2020-10-06 22:48:22 | [diff] [blame] | 450 | # When use_xvfb is set by the invoker, it indicates that running this test |
| 451 | # target requires a window, and in lacros build, ash-chrome serves as the |
| 452 | # display server. Note that even though the tests themselves do not require |
| 453 | # xvfb anymore, xvfb.py is still needed to invoke the lacros test runner |
| 454 | # because ash-chrome is based on x11. |
| 455 | _use_ash_chrome = _use_xvfb |
| 456 | |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 457 | generate_wrapper(_gen_runner_target) { |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 458 | wrapper_script = "$root_build_dir/bin/run_" + _executable |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 459 | |
Yuke Liao | 2e4953cf | 2020-07-26 19:20:19 | [diff] [blame] | 460 | data = [] |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 461 | if (_use_xvfb) { |
| 462 | executable = "//testing/xvfb.py" |
Yuke Liao | 2e4953cf | 2020-07-26 19:20:19 | [diff] [blame] | 463 | data += [ "//testing/xvfb.py" ] |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 464 | } else { |
| 465 | executable = "//testing/test_env.py" |
Yuke Liao | 2e4953cf | 2020-07-26 19:20:19 | [diff] [blame] | 466 | data += [ "//testing/test_env.py" ] |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 467 | } |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 468 | data += [ "//testing/location_tags.json" ] |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 469 | |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 470 | executable_args = [ |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 471 | "@WrappedPath(../../build/lacros/test_runner.py)", |
Yuke Liao | 240816d | 2020-07-22 00:10:39 | [diff] [blame] | 472 | "test", |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 473 | "@WrappedPath(./${_executable})", |
| 474 | "--test-launcher-bot-mode", |
| 475 | ] |
Yuke Liao | 32af424 | 2020-07-16 21:48:02 | [diff] [blame] | 476 | |
Yuke Liao | f540c74 | 2020-07-29 16:28:34 | [diff] [blame] | 477 | if (_use_ash_chrome) { |
Yuke Liao | 8348aa4 | 2020-11-04 19:35:23 | [diff] [blame] | 478 | executable_args += [ "--ash-chrome-path=ash_clang_x64/chrome" ] |
Yuke Liao | 240816d | 2020-07-22 00:10:39 | [diff] [blame] | 479 | } |
| 480 | |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 481 | if (is_asan) { |
| 482 | executable_args += [ "--asan=true" ] |
| 483 | } |
| 484 | if (is_msan) { |
| 485 | executable_args += [ "--msan=true" ] |
| 486 | } |
| 487 | if (is_tsan) { |
| 488 | executable_args += [ "--tsan=true" ] |
| 489 | } |
| 490 | if (use_cfi_diag) { |
| 491 | executable_args += [ "--cfi-diag=true" ] |
| 492 | } |
| 493 | |
Yuke Liao | 2e4953cf | 2020-07-26 19:20:19 | [diff] [blame] | 494 | data += [ |
Yuke Liao | 240816d | 2020-07-22 00:10:39 | [diff] [blame] | 495 | "//build/lacros/test_runner.py", |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 496 | "//.vpython", |
| 497 | ] |
| 498 | } |
| 499 | |
| 500 | executable(target_name) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 501 | forward_variables_from(invoker, "*", TESTONLY_AND_VISIBILITY) |
| 502 | forward_variables_from(invoker, [ "visibility" ]) |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 503 | if (!defined(deps)) { |
| 504 | deps = [] |
| 505 | } |
| 506 | |
Yuke Liao | d037abc | 2020-10-06 22:48:22 | [diff] [blame] | 507 | if (!defined(data_deps)) { |
| 508 | data_deps = [] |
| 509 | } |
| 510 | |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 511 | write_runtime_deps = _runtime_deps_file |
| 512 | deps += [ ":$_gen_runner_target" ] |
Yuke Liao | d037abc | 2020-10-06 22:48:22 | [diff] [blame] | 513 | if (_use_ash_chrome && also_build_ash_chrome) { |
| 514 | data_deps += |
| 515 | [ "//chrome:chrome(//build/toolchain/linux:ash_clang_x64)" ] |
| 516 | } |
Yuke Liao | e703384b | 2020-07-16 01:05:24 | [diff] [blame] | 517 | } |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 518 | } else if (!is_nacl) { |
Dirk Pranke | 79d065d | 2020-08-29 03:28:30 | [diff] [blame] | 519 | if (is_mac || is_win) { |
| 520 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb) |
| 521 | } |
| 522 | |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 523 | _runtime_deps_file = "$root_out_dir/${target_name}.runtime_deps" |
| 524 | _executable = target_name |
| 525 | _gen_runner_target = "${target_name}__runner" |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 526 | |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 527 | if ((is_linux || is_chromeos) && defined(invoker.use_xvfb)) { |
| 528 | _use_xvfb = invoker.use_xvfb |
| 529 | } else { |
| 530 | _use_xvfb = false |
| 531 | } |
| 532 | |
| 533 | generate_wrapper(_gen_runner_target) { |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 534 | wrapper_script = "$root_build_dir/bin/run_" + _executable |
| 535 | |
| 536 | data = [] |
| 537 | if (_use_xvfb) { |
| 538 | executable = "//testing/xvfb.py" |
| 539 | data += [ "//testing/xvfb.py" ] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 540 | } else { |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 541 | executable = "//testing/test_env.py" |
| 542 | data += [ "//testing/test_env.py" ] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 543 | } |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 544 | data += [ "//testing/location_tags.json" ] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 545 | |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 546 | executable_args = [ |
| 547 | "@WrappedPath(./${_executable})", |
| 548 | "--test-launcher-bot-mode", |
| 549 | ] |
| 550 | if (is_asan) { |
| 551 | executable_args += [ "--asan=true" ] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 552 | } |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 553 | if (is_msan) { |
| 554 | executable_args += [ "--msan=true" ] |
| 555 | } |
| 556 | if (is_tsan) { |
| 557 | executable_args += [ "--tsan=true" ] |
| 558 | } |
| 559 | if (use_cfi_diag) { |
| 560 | executable_args += [ "--cfi-diag=true" ] |
| 561 | } |
| 562 | |
| 563 | data += [ "//.vpython" ] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | executable(target_name) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 567 | forward_variables_from(invoker, |
| 568 | "*", |
| 569 | TESTONLY_AND_VISIBILITY + [ "use_xvfb" ]) |
| 570 | forward_variables_from(invoker, [ "visibility" ]) |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 571 | if (!defined(deps)) { |
| 572 | deps = [] |
| 573 | } |
| 574 | |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 575 | deps += [ |
| 576 | # Give tests the default manifest on Windows (a no-op elsewhere). |
| 577 | "//build/win:default_exe_manifest", |
| 578 | ] |
| 579 | |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 580 | write_runtime_deps = _runtime_deps_file |
| 581 | deps += [ ":$_gen_runner_target" ] |
| 582 | } |
| 583 | } else { |
| 584 | # This is a catch-all clause for NaCl toolchains and other random |
| 585 | # configurations that might define tests; test() in these configs |
| 586 | # will just define the underlying executables. |
| 587 | assert(!defined(invoker.use_xvfb) || !invoker.use_xvfb, |
| 588 | "use_xvfb should not be defined for a non-linux configuration") |
| 589 | executable(target_name) { |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 590 | forward_variables_from(invoker, "*", TESTONLY_AND_VISIBILITY) |
| 591 | forward_variables_from(invoker, [ "visibility" ]) |
Dirk Pranke | dd4ff74 | 2020-11-18 19:57:32 | [diff] [blame] | 592 | if (!defined(deps)) { |
| 593 | deps = [] |
Dirk Pranke | 31e346e | 2020-07-15 00:54:06 | [diff] [blame] | 594 | } |
| 595 | } |
qsr | fb5251d1 | 2015-01-21 15:57:22 | [diff] [blame] | 596 | } |
| 597 | } |
brettw | edb6ecc | 2016-07-14 23:37:03 | [diff] [blame] | 598 | |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 599 | # Defines a type of test that invokes a script to run, rather than |
| 600 | # invoking an executable. |
| 601 | # |
| 602 | # The script must implement the |
| 603 | # [test executable API](//docs/testing/test_executable_api.md). |
| 604 | # |
| 605 | # The template must be passed the `script` parameter, which specifies |
| 606 | # the path to the script to run. It may optionally be passed a |
| 607 | # `script_args` parameter, which can be used to include a list of |
| 608 | # args to be specified by default. The template will produce |
| 609 | # a `$root_build_dir/run_$target_name` wrapper and write the runtime_deps |
| 610 | # for the target to $root_build_dir/${target_name}.runtime_deps, as per |
| 611 | # the conventions listed in the |
| 612 | # [test wrapper API](//docs/testing/test_wrapper_api.md). |
| 613 | template("script_test") { |
| 614 | generate_wrapper(target_name) { |
| 615 | testonly = true |
| 616 | wrapper_script = "${root_build_dir}/bin/run_${target_name}" |
| 617 | |
| 618 | executable = "//testing/test_env.py" |
| 619 | |
| 620 | executable_args = |
| 621 | [ "@WrappedPath(" + rebase_path(invoker.script, root_build_dir) + ")" ] |
| 622 | if (defined(invoker.args)) { |
| 623 | executable_args += invoker.args |
| 624 | } |
| 625 | |
| 626 | data = [ |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 627 | "//testing/test_env.py", |
| 628 | |
| 629 | # These aren't needed by *every* test, but they're likely needed often |
| 630 | # enough to just make it easier to declare them here. |
| 631 | "//testing/xvfb.py", |
| 632 | "//testing/scripts/common.py", |
| 633 | |
| 634 | invoker.script, |
| 635 | ] |
Dirk Pranke | 2dd666cd | 2021-03-03 16:57:47 | [diff] [blame] | 636 | |
| 637 | if (defined(invoker.run_under_python2) && invoker.run_under_python2) { |
| 638 | use_vpython3 = false |
| 639 | data += [ "//.vpython" ] |
| 640 | } else { |
| 641 | use_vpython3 = true |
| 642 | data += [ "//.vpython3" ] |
| 643 | } |
| 644 | |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 645 | if (defined(invoker.data)) { |
| 646 | data += invoker.data |
| 647 | } |
Dirk Pranke | 19a5873 | 2021-03-24 22:26:22 | [diff] [blame^] | 648 | data += [ "//testing/location_tags.json" ] |
| 649 | |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 650 | data_deps = [] |
| 651 | if (defined(invoker.data_deps)) { |
| 652 | data_deps += invoker.data_deps |
| 653 | } |
| 654 | |
| 655 | forward_variables_from(invoker, |
| 656 | [ "*" ], |
Andrew Grieve | 1b290e4a2 | 2020-11-24 20:07:01 | [diff] [blame] | 657 | TESTONLY_AND_VISIBILITY + [ |
| 658 | "data", |
| 659 | "data_deps", |
| 660 | "script", |
| 661 | "script_args", |
| 662 | ]) |
| 663 | forward_variables_from(invoker, [ "visibility" ]) |
Dirk Pranke | 6188075b | 2020-10-01 19:31:28 | [diff] [blame] | 664 | |
| 665 | write_runtime_deps = "${root_build_dir}/${target_name}.runtime_deps" |
| 666 | } |
| 667 | } |
| 668 | |
brettw | edb6ecc | 2016-07-14 23:37:03 | [diff] [blame] | 669 | # Test defaults. |
| 670 | set_defaults("test") { |
| 671 | if (is_android) { |
| 672 | configs = default_shared_library_configs |
Yipeng Wang | 158dbc5c | 2017-06-30 18:16:41 | [diff] [blame] | 673 | configs -= [ "//build/config/android:hide_all_but_jni_onload" ] |
Thomas Anderson | 11c1d982 | 2019-01-15 06:32:59 | [diff] [blame] | 674 | configs += [ "//build/config/android:hide_all_but_jni" ] |
brettw | edb6ecc | 2016-07-14 23:37:03 | [diff] [blame] | 675 | } else { |
| 676 | configs = default_executable_configs |
| 677 | } |
| 678 | } |