Commit eb4c3132 authored by Artem Titov's avatar Artem Titov Committed by Commit Bot

Don't depend on //base for webrtc standalone build

Don't depend on //base for webrtc standalone build,
because it breaks webrtc compilation

Bug=none

Change-Id: I68bb4400e858a008ba6dfb7debfe6f6a6237b9ca
Reviewed-on: https://chromium-review.googlesource.com/1013574Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Commit-Queue: Artem Titov <titovartem@chromium.org>
Cr-Commit-Position: refs/heads/master@{#551356}
parent ed1a9972
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
import("//build_overrides/build.gni")
config("gtest_config") { config("gtest_config") {
visibility = [ ":*" ] # gmock also shares this config. visibility = [ ":*" ] # gmock also shares this config.
...@@ -88,7 +90,7 @@ source_set("gtest") { ...@@ -88,7 +90,7 @@ source_set("gtest") {
configs -= [ "//build/config/compiler:chromium_code" ] configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ]
if (is_nacl) { if (is_nacl || !build_with_chromium) {
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",
......
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