Commit f0137029 authored by Wez's avatar Wez Committed by Commit Bot

Fuchsia: Add missing googletest dependency to fix the component build.

This adds the necessary SDK library dependency for the Fuchsia build
to compile in component mode.

Bug: 756269
TBR: dpranke
Change-Id: I110a4599273967aa99709ed20f187f2e2713b05a
Reviewed-on: https://chromium-review.googlesource.com/1048633Reviewed-by: default avatarWez <wez@chromium.org>
Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557136}
parent 842958eb
...@@ -92,9 +92,7 @@ source_set("gtest") { ...@@ -92,9 +92,7 @@ source_set("gtest") {
defines = [] defines = []
if (is_nacl || !build_with_chromium) { if (is_nacl || !build_with_chromium) {
defines += [ defines += [ "GTEST_DISABLE_PRINT_STACK_TRACE" ]
"GTEST_DISABLE_PRINT_STACK_TRACE"
]
sources -= [ sources -= [
"custom/gtest/internal/custom/stack_trace_getter.cc", "custom/gtest/internal/custom/stack_trace_getter.cc",
"custom/gtest/internal/custom/stack_trace_getter.h", "custom/gtest/internal/custom/stack_trace_getter.h",
...@@ -103,6 +101,9 @@ source_set("gtest") { ...@@ -103,6 +101,9 @@ source_set("gtest") {
deps = [ deps = [
"//base", "//base",
] ]
if (is_fuchsia) {
deps += [ "//third_party/fuchsia-sdk:launchpad" ]
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment