Commit 08805e35 by Jamie Madill Committed by Commit Bot

Explicitly include "runtime_deps" on Windows.

For applications and tests, we need the runtime deps for component builds. It still like this omission was causing test failures on Intel in standalone. Bug: angleproject:5114 Change-Id: Ifd9e90b28f985e4d2d1392a97ecb75907290f5ff Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2878093 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org>
parent fc0c8d18
......@@ -232,6 +232,7 @@ set_defaults("angle_executable") {
configs = angle_common_configs
public_configs = []
suppressed_configs = angle_remove_configs
data_deps = []
}
set_defaults("angle_shared_library") {
......@@ -284,6 +285,10 @@ template("angle_executable") {
configs += invoker.configs
configs -= invoker.suppressed_configs
if (is_win) {
data_deps += [ "//build/win:runtime_libs" ]
}
}
}
......@@ -463,6 +468,10 @@ if (angle_standalone || build_with_chromium) {
]
sources += [ "$angle_root/util/ios/ios_main.mm" ]
}
if (is_win) {
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