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

Side by Side Diff: webrtc/base/base.gyp

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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'stringutils.cc', 81 'stringutils.cc',
82 'stringutils.h', 82 'stringutils.h',
83 'swap_queue.h', 83 'swap_queue.h',
84 'systeminfo.cc', 84 'systeminfo.cc',
85 'systeminfo.h', 85 'systeminfo.h',
86 'template_util.h', 86 'template_util.h',
87 'thread_annotations.h', 87 'thread_annotations.h',
88 'thread_checker.h', 88 'thread_checker.h',
89 'thread_checker_impl.cc', 89 'thread_checker_impl.cc',
90 'thread_checker_impl.h', 90 'thread_checker_impl.h',
91 'timestampaligner.cc',
92 'timestampaligner.h',
91 'timeutils.cc', 93 'timeutils.cc',
92 'timeutils.h', 94 'timeutils.h',
93 'trace_event.h', 95 'trace_event.h',
94 ], 96 ],
95 'conditions': [ 97 'conditions': [
96 ['build_with_chromium==1', { 98 ['build_with_chromium==1', {
97 'dependencies': [ 99 'dependencies': [
98 '<(DEPTH)/base/base.gyp:base', 100 '<(DEPTH)/base/base.gyp:base',
99 ], 101 ],
100 'include_dirs': [ 102 'include_dirs': [
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 }, 639 },
638 { 640 {
639 'target_name': 'gtest_prod', 641 'target_name': 'gtest_prod',
640 'type': 'static_library', 642 'type': 'static_library',
641 'sources': [ 643 'sources': [
642 'gtest_prod_util.h', 644 'gtest_prod_util.h',
643 ], 645 ],
644 }, 646 },
645 ], 647 ],
646 } 648 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698