Adding default_exe_manifest to some gn binaries

gn builds are missing Windows manifests for some webrtc executables.
These manifests are necessary in order to get predictable behavior on
Windows.

BUG=602505
NOTRY=True

Review-Url: https://codereview.webrtc.org/1927793002
Cr-Commit-Position: refs/heads/master@{#12540}
This commit is contained in:
brucedawson 2016-04-28 00:21:08 -07:00 committed by Commit bot
parent 8688a4e2b5
commit 84583e03c7

View File

@ -46,6 +46,7 @@ executable("frame_analyzer") {
deps = [
":command_line_parser",
":video_quality_analysis",
"//build/win:default_exe_manifest",
]
}
@ -58,6 +59,7 @@ executable("rgba_to_i420_converter") {
deps = [
":command_line_parser",
"../common_video",
"//build/win:default_exe_manifest",
]
}
@ -77,6 +79,7 @@ if (!build_with_chromium) {
deps = [
":command_line_parser",
"../test:test_support_main",
"//build/win:default_exe_manifest",
"//testing/gtest",
]
}