Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: webrtc/call/BUILD.gn

Issue 2301053002: GN: Introduce templates. (Closed)
Patch Set: Rebase. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/call/BUILD.gn
diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
index eed2b077308eabffd5315dbb7787893acaad207c..bec124988d96cd1dc41a3ed411df7d8a0b303c7d 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -8,7 +8,7 @@
import("../build/webrtc.gni")
-source_set("call") {
+rtc_source_set("call") {
sources = [
"bitrate_allocator.cc",
"call.cc",
@@ -22,7 +22,7 @@ source_set("call") {
if (is_clang) {
# Suppress warnings from Chrome's Clang plugins.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
- configs -= [ "//build/config/clang:find_bad_constructs" ]
+ configs_suppressions += [ "//build/config/clang:find_bad_constructs" ]
}
deps = [
@@ -39,7 +39,7 @@ source_set("call") {
}
if (rtc_include_tests) {
- source_set("call_tests") {
+ rtc_source_set("call_tests") {
testonly = true
sources = [
"bitrate_allocator_unittest.cc",
@@ -57,7 +57,7 @@ if (rtc_include_tests) {
if (is_clang) {
# Suppress warnings from the Chromium Clang plugin.
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
- configs -= [ "//build/config/clang:find_bad_constructs" ]
+ configs_suppressions += [ "//build/config/clang:find_bad_constructs" ]
}
}
}

Powered by Google App Engine
This is Rietveld 408576698