Commit 0639f7a9 by Jamie Madill Committed by Commit Bot

Check angle_has_build before including runtime_deps.

This target doesn't exist in Skia. Bug: angleproject:5940 Change-Id: I0095b771c0d57ec45bfd9294962c540d70679e6a Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2884700Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 913bc473
...@@ -286,7 +286,7 @@ template("angle_executable") { ...@@ -286,7 +286,7 @@ template("angle_executable") {
configs += invoker.configs configs += invoker.configs
configs -= invoker.suppressed_configs configs -= invoker.suppressed_configs
if (is_win) { if (angle_has_build && is_win) {
data_deps += [ "//build/win:runtime_libs" ] data_deps += [ "//build/win:runtime_libs" ]
} }
} }
...@@ -469,7 +469,7 @@ if (angle_standalone || build_with_chromium) { ...@@ -469,7 +469,7 @@ if (angle_standalone || build_with_chromium) {
sources += [ "$angle_root/util/ios/ios_main.mm" ] sources += [ "$angle_root/util/ios/ios_main.mm" ]
} }
if (is_win) { if (angle_has_build && is_win) {
data_deps += [ "//build/win:runtime_libs" ] data_deps += [ "//build/win:runtime_libs" ]
} }
} }
......
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