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

Unified Diff: webrtc/system_wrappers/BUILD.gn

Issue 2439473002: Delete DataLog abstraction, which was almost unused. (Closed)
Patch Set: Created 4 years, 2 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/system_wrappers/BUILD.gn
diff --git a/webrtc/system_wrappers/BUILD.gn b/webrtc/system_wrappers/BUILD.gn
index 5033caab9f08e0c32390f2aa2b2ad7fb27293711..8bed25e2748fa6933130177d8d4d53a1c81303aa 100644
--- a/webrtc/system_wrappers/BUILD.gn
+++ b/webrtc/system_wrappers/BUILD.gn
@@ -21,9 +21,6 @@ rtc_static_library("system_wrappers") {
"include/cpu_features_wrapper.h",
"include/cpu_info.h",
"include/critical_section_wrapper.h",
- "include/data_log.h",
- "include/data_log_c.h",
- "include/data_log_impl.h",
"include/event_wrapper.h",
"include/field_trial.h",
"include/file_wrapper.h",
@@ -48,7 +45,6 @@ rtc_static_library("system_wrappers") {
"source/condition_variable_event_win.h",
"source/cpu_features.cc",
"source/cpu_info.cc",
- "source/data_log_c.cc",
"source/event.cc",
"source/event_timer_posix.cc",
"source/event_timer_posix.h",
@@ -75,12 +71,6 @@ rtc_static_library("system_wrappers") {
"source/trace_win.h",
]
- if (rtc_enable_data_logging) {
- sources += [ "source/data_log.cc" ]
- } else {
- sources += [ "source/data_log_no_op.cc" ]
- }
-
defines = []
libs = []
deps = [
@@ -187,9 +177,6 @@ if (rtc_include_tests) {
"source/clock_unittest.cc",
"source/condition_variable_unittest.cc",
"source/critical_section_unittest.cc",
- "source/data_log_c_helpers_unittest.c",
- "source/data_log_c_helpers_unittest.h",
- "source/data_log_helpers_unittest.cc",
"source/event_timer_posix_unittest.cc",
"source/logging_unittest.cc",
"source/metrics_default_unittest.cc",
@@ -199,13 +186,6 @@ if (rtc_include_tests) {
"source/stl_util_unittest.cc",
"source/stringize_macros_unittest.cc",
]
- if (rtc_enable_data_logging) {
- sources += [
- "source/data_log_unittest.cc",
- "source/data_log_unittest_disabled.cc",
- ]
- }
-
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
if (!build_with_chromium && is_clang) {
« no previous file with comments | « webrtc/modules/audio_coding/neteq/audio_decoder_unittest.cc ('k') | webrtc/system_wrappers/include/data_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698