GN Templates: Move common_inherited_config to the template.

Remove common_inherited_config from the targets and add it to the
template instead.

BUG=webrtc:6187
NOTRY=True

Review-Url: https://codereview.webrtc.org/2311843002
Cr-Commit-Position: refs/heads/master@{#14069}
This commit is contained in:
ehmaldonado
2016-09-05 06:10:18 -07:00
committed by Commit bot
parent bd4317263a
commit e9cc686293
39 changed files with 56 additions and 311 deletions

View File

@ -48,8 +48,6 @@ rtc_source_set("video_processing") {
deps += [ ":video_processing_neon" ]
}
public_configs = [ "../..:common_inherited_config" ]
if (is_clang) {
# Suppress warnings from Chrome's Clang plugins.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
@ -64,8 +62,6 @@ if (build_video_processing_sse2) {
"util/denoiser_filter_sse2.h",
]
public_configs = [ "../..:common_inherited_config" ]
if (is_clang) {
# Suppress warnings from Chrome's Clang plugins.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
@ -88,6 +84,5 @@ if (rtc_build_with_neon) {
suppressed_configs += [ "//build/config/compiler:compiler_arm_fpu" ]
cflags = [ "-mfpu=neon" ]
}
public_configs = [ "../..:common_inherited_config" ]
}
}