Commit 26098cb2 by Tom Anderson Committed by Commit Bot

Add missing dependencies on exe_and_shlib_deps (angle)

BUG=chromium:723069 Change-Id: I2b3c9be297c2b65955e31f393756ca266cc7c60b Reviewed-on: https://chromium-review.googlesource.com/514436Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 6811a316
...@@ -562,6 +562,7 @@ shared_library("libGLESv2") { ...@@ -562,6 +562,7 @@ shared_library("libGLESv2") {
deps = [ deps = [
":includes", ":includes",
":libANGLE", ":libANGLE",
"//build/config:exe_and_shlib_deps",
] ]
} }
...@@ -619,6 +620,7 @@ shared_library("libEGL") { ...@@ -619,6 +620,7 @@ shared_library("libEGL") {
deps = [ deps = [
":includes", ":includes",
":libGLESv2", ":libGLESv2",
"//build/config:exe_and_shlib_deps",
] ]
} }
...@@ -733,6 +735,8 @@ foreach(is_shared_library, ...@@ -733,6 +735,8 @@ foreach(is_shared_library,
if (is_shared_library) { if (is_shared_library) {
defines = [ "LIBANGLE_UTIL_IMPLEMENTATION" ] defines = [ "LIBANGLE_UTIL_IMPLEMENTATION" ]
deps += [ "//build/config:exe_and_shlib_deps" ]
if (is_mac && !is_component_build) { if (is_mac && !is_component_build) {
ldflags = [ ldflags = [
"-install_name", "-install_name",
......
...@@ -469,6 +469,7 @@ foreach(layer_info, layers) { ...@@ -469,6 +469,7 @@ foreach(layer_info, layers) {
deps = [ deps = [
":vulkan_layer_table", ":vulkan_layer_table",
":vulkan_layer_utils", ":vulkan_layer_utils",
"//build/config:exe_and_shlib_deps",
] ]
if (layer_info[2] != "") { if (layer_info[2] != "") {
deps += [ layer_info[2] ] deps += [ layer_info[2] ]
......
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