Commit df4b916e authored by jochen's avatar jochen Committed by Commit bot

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