OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 ] | |
terelius
2016/11/23 14:19:23
Should this depend on base_approved?
minyue-webrtc
2016/11/24 08:44:55
Oh, thanks, the exp_filter uses the follow. So it
minyue-webrtc
2016/11/24 10:26:02
Oh, I might have looked at a wrong source yesterda
| |
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 Loading... | |
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 } |
OLD | NEW |