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

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2532523002: Move smoothing filter to common audio and exp_filter to base/analytics. (Closed)
Patch Set: typo Created 4 years 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 unified diff | Download patch
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/analytics/exp_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "constructormagic.h", 117 "constructormagic.h",
118 "copyonwritebuffer.cc", 118 "copyonwritebuffer.cc",
119 "copyonwritebuffer.h", 119 "copyonwritebuffer.h",
120 "criticalsection.cc", 120 "criticalsection.cc",
121 "criticalsection.h", 121 "criticalsection.h",
122 "deprecation.h", 122 "deprecation.h",
123 "event.cc", 123 "event.cc",
124 "event.h", 124 "event.h",
125 "event_tracer.cc", 125 "event_tracer.cc",
126 "event_tracer.h", 126 "event_tracer.h",
127 "exp_filter.cc",
128 "exp_filter.h",
129 "file.cc", 127 "file.cc",
130 "file.h", 128 "file.h",
131 "format_macros.h", 129 "format_macros.h",
132 "function_view.h", 130 "function_view.h",
133 "ignore_wundef.h", 131 "ignore_wundef.h",
134 "location.cc", 132 "location.cc",
135 "location.h", 133 "location.h",
136 "md5.cc", 134 "md5.cc",
137 "md5.h", 135 "md5.h",
138 "md5digest.cc", 136 "md5digest.cc",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 "task_queue_posix.cc", 329 "task_queue_posix.cc",
332 ] 330 ]
333 } 331 }
334 if (is_win) { 332 if (is_win) {
335 sources += [ "task_queue_win.cc" ] 333 sources += [ "task_queue_win.cc" ]
336 } 334 }
337 } 335 }
338 } 336 }
339 } 337 }
340 338
339 rtc_static_library("rtc_analytics") {
340 sources = [
341 "analytics/exp_filter.cc",
342 "analytics/exp_filter.h",
343 ]
344 }
345
341 config("rtc_base_warnings_config") { 346 config("rtc_base_warnings_config") {
342 if (is_win && is_clang) { 347 if (is_win && is_clang) {
343 cflags = [ 348 cflags = [
344 # Disable warnings failing when compiling with Clang on Windows. 349 # Disable warnings failing when compiling with Clang on Windows.
345 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 350 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
346 "-Wno-sign-compare", 351 "-Wno-sign-compare",
347 "-Wno-missing-braces", 352 "-Wno-missing-braces",
348 ] 353 ]
349 } 354 }
350 } 355 }
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "java/src/org/webrtc/Logging.java", 772 "java/src/org/webrtc/Logging.java",
768 "java/src/org/webrtc/Size.java", 773 "java/src/org/webrtc/Size.java",
769 "java/src/org/webrtc/ThreadUtils.java", 774 "java/src/org/webrtc/ThreadUtils.java",
770 ] 775 ]
771 776
772 deps = [ 777 deps = [
773 "//base:base_java", 778 "//base:base_java",
774 ] 779 ]
775 } 780 }
776 } 781 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/analytics/exp_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698