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

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

Issue 2017443003: Implement timestamp translation/filter in VideoCapturer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved timestamp filtering logic to a separate class. Created 4 years, 6 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 unified diff | Download patch
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "stringutils.cc", 145 "stringutils.cc",
146 "stringutils.h", 146 "stringutils.h",
147 "swap_queue.h", 147 "swap_queue.h",
148 "systeminfo.cc", 148 "systeminfo.cc",
149 "systeminfo.h", 149 "systeminfo.h",
150 "template_util.h", 150 "template_util.h",
151 "thread_annotations.h", 151 "thread_annotations.h",
152 "thread_checker.h", 152 "thread_checker.h",
153 "thread_checker_impl.cc", 153 "thread_checker_impl.cc",
154 "thread_checker_impl.h", 154 "thread_checker_impl.h",
155 "timestampaligner.h",
156 "timestampaligner.cc",
155 "timeutils.cc", 157 "timeutils.cc",
156 "timeutils.h", 158 "timeutils.h",
157 "trace_event.h", 159 "trace_event.h",
158 ] 160 ]
159 161
160 if (build_with_chromium) { 162 if (build_with_chromium) {
161 # Dependency on chromium's logging (in //base). 163 # Dependency on chromium's logging (in //base).
162 deps += [ "//base:base" ] 164 deps += [ "//base:base" ]
163 sources += [ 165 sources += [
164 "../../webrtc_overrides/webrtc/base/logging.cc", 166 "../../webrtc_overrides/webrtc/base/logging.cc",
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 defines += [ "timezone=_timezone" ] 621 defines += [ "timezone=_timezone" ]
620 sources -= [ "ifaddrs_converter.cc" ] 622 sources -= [ "ifaddrs_converter.cc" ]
621 } 623 }
622 } 624 }
623 625
624 source_set("gtest_prod") { 626 source_set("gtest_prod") {
625 sources = [ 627 sources = [
626 "gtest_prod_util.h", 628 "gtest_prod_util.h",
627 ] 629 ]
628 } 630 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698