GN: Exclude frame_analyzer and rgba_to_i420_converter from Chromium builds.

Chromium's ASan bot fails to link rgba_to_i420_converter so let's exclude it until resolved.

NOTRY=True
BUG=webrtc:5970
TBR=jochen@chromium.org

Review-Url: https://codereview.webrtc.org/2039173002
Cr-Commit-Position: refs/heads/master@{#13047}
This commit is contained in:
kjellander 2016-06-06 02:00:18 -07:00 committed by Commit bot
parent 46007ae1eb
commit a811968eec

View File

@ -12,9 +12,15 @@ import("../build/webrtc.gni")
source_set("tools") {
deps = [
":command_line_parser",
":frame_analyzer",
":rgba_to_i420_converter",
]
if (!build_with_chromium) {
# TODO(kjellander): Enable these when webrtc:5970 is fixed.
deps += [
":frame_analyzer",
":rgba_to_i420_converter",
]
}
}
source_set("command_line_parser") {