rtc_executable should depend on //build/win:default_exe_manifest.

Bug: None
Change-Id: I34bcbaa50a0dd669316ff6e7ae8c1e4c35ba742b
Reviewed-on: https://webrtc-review.googlesource.com/96500
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24471}
This commit is contained in:
Mirko Bonadei
2018-08-28 14:39:27 +02:00
committed by Commit Bot
parent a687812c70
commit 9427f48f59
2 changed files with 6 additions and 7 deletions

View File

@ -81,7 +81,6 @@ rtc_executable("frame_analyzer") {
":command_line_parser",
":video_quality_analysis",
"../test:perf_test",
"//build/win:default_exe_manifest",
]
}
@ -96,7 +95,6 @@ if (!build_with_chromium) {
deps = [
":command_line_parser",
":video_quality_analysis",
"//build/win:default_exe_manifest",
]
}
@ -119,7 +117,6 @@ if (!build_with_chromium) {
deps = [
":command_line_parser",
":reference_less_video_analysis_lib",
"//build/win:default_exe_manifest",
]
}
@ -134,7 +131,6 @@ if (!build_with_chromium) {
deps = [
":command_line_parser",
"../common_video",
"//build/win:default_exe_manifest",
"//third_party/libyuv",
]
}
@ -159,7 +155,6 @@ if (!build_with_chromium) {
deps = [
":command_line_parser",
":frame_editing_lib",
"//build/win:default_exe_manifest",
]
}
@ -174,7 +169,6 @@ if (!build_with_chromium) {
"../modules/audio_device",
"../modules/audio_device:audio_device_impl",
"../system_wrappers:system_wrappers_default",
"//build/win:default_exe_manifest",
]
}
}
@ -280,7 +274,6 @@ if (rtc_include_tests) {
"../rtc_base:safe_minmax",
"../system_wrappers:metrics_default",
"../test:test_support",
"//build/win:default_exe_manifest",
"//testing/gtest",
]
}

View File

@ -453,6 +453,12 @@ template("rtc_executable") {
if (defined(invoker.public_configs)) {
public_configs += invoker.public_configs
}
if (is_win) {
deps += [
# Give executables the default manifest on Windows (a no-op elsewhere).
"//build/win:default_exe_manifest",
]
}
}
}