commit | 05c7a3f218d4ff99a09fade8014ad2d529565581 | [log] [tgz] |
---|---|---|
author | Scott Graham <[email protected]> | Wed Aug 02 01:57:55 2017 |
committer | Commit Bot <[email protected]> | Wed Aug 02 01:57:55 2017 |
tree | cd30188720b9a1257b08e1d1ead11f93b741edc1 | |
parent | 47f4fbf1f6cbe4d7b42581f0bc5a5f5545582bfd [diff] [blame] |
fuchsia: Make test binaries depend on exe_and_shlib_deps This resolves e.g. base_unittests not being able to find operator new, string::string(), etc. in Debug (is_component_build=true) builds. This matches other platforms, but was missed in creating the Fuchsia test() template. Bug: 750392 Change-Id: I1a7ba2988e9d991f26d392eeab670f3a100de319 Reviewed-on: https://chromium-review.googlesource.com/596520 Reviewed-by: Dirk Pranke <[email protected]> Commit-Queue: Scott Graham <[email protected]> Cr-Commit-Position: refs/heads/master@{#491208}
diff --git a/testing/test.gni b/testing/test.gni index 64619b3..5afff8bc 100644 --- a/testing/test.gni +++ b/testing/test.gni
@@ -246,6 +246,7 @@ data_deps = [] } data_deps += [ ":$_test_runner_target" ] + deps += [ "//build/config:exe_and_shlib_deps" ] } } else if (is_ios) { import("//build/config/ios/ios_sdk.gni")