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

Unified Diff: webrtc/stats/BUILD.gn

Issue 2242043002: RTCStatsCollector and RTCPeerConnectionStats added (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with master Created 4 years, 4 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
« no previous file with comments | « webrtc/api/test/mock_datachannel.h ('k') | webrtc/stats/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/stats/BUILD.gn
diff --git a/webrtc/stats/BUILD.gn b/webrtc/stats/BUILD.gn
index 2f69216772d06a7d780600749b4992127b0f2001..d1c08bdd5112666f8d501db4394afecc0fe41bd3 100644
--- a/webrtc/stats/BUILD.gn
+++ b/webrtc/stats/BUILD.gn
@@ -20,12 +20,20 @@ source_set("rtc_stats") {
cflags = []
sources = [
"rtcstats.cc",
+ "rtcstats_objects.cc",
+ "rtcstatscollector.cc",
+ "rtcstatscollector.h",
"rtcstatsreport.cc",
]
configs += [ "..:common_config" ]
public_configs = [ "..:common_inherited_config" ]
+ if (is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+
deps = [
"../api:libjingle_peerconnection",
]
@@ -37,12 +45,18 @@ if (rtc_include_tests) {
testonly = true
sources = [
"rtcstats_unittest.cc",
+ "rtcstatscollector_unittest.cc",
"rtcstatsreport_unittest.cc",
]
configs += [ "..:common_config" ]
public_configs = [ "..:common_inherited_config" ]
+ if (is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+
deps = [
":rtc_stats",
"../base:rtc_base_tests_utils",
@@ -53,11 +67,5 @@ if (rtc_include_tests) {
if (is_android) {
deps += [ "//testing/android/native_test:native_test_native_code" ]
}
-
- 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" ]
- }
}
}
« no previous file with comments | « webrtc/api/test/mock_datachannel.h ('k') | webrtc/stats/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698