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