Move the dependency on "log" to v8's public config

BUG=chromium:609107
R=machenbach@chromium.org

Review-Url: https://codereview.chromium.org/1973903004
Cr-Commit-Position: refs/heads/master@{#36244}
This commit is contained in:
jochen 2016-05-13 07:01:07 -07:00 committed by Commit bot
parent 41dbaefb4a
commit df4b916e00

View File

@ -126,6 +126,10 @@ config("external_config") {
]
}
include_dirs = [ "include" ]
libs = []
if (is_android && current_toolchain != host_toolchain) {
libs += [ "log" ]
}
}
# This config should only be applied to code that needs to be explicitly
@ -2061,11 +2065,6 @@ if (is_component_build) {
]
public_configs = [ ":external_config" ]
libs = []
if (is_android && current_toolchain != host_toolchain) {
libs += [ "log" ]
}
}
} else {
group("v8") {