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

Side by Side Diff: webrtc/base/base_tests.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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 'includes': [ '../build/common.gypi', ], 9 'includes': [ '../build/common.gypi', ],
10 'targets': [ 10 'targets': [
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'stringutils_unittest.cc', 109 'stringutils_unittest.cc',
110 'swap_queue_unittest.cc', 110 'swap_queue_unittest.cc',
111 # TODO(ronghuawu): Reenable this test. 111 # TODO(ronghuawu): Reenable this test.
112 # 'systeminfo_unittest.cc', 112 # 'systeminfo_unittest.cc',
113 'task_queue_unittest.cc', 113 'task_queue_unittest.cc',
114 'task_unittest.cc', 114 'task_unittest.cc',
115 'testclient_unittest.cc', 115 'testclient_unittest.cc',
116 'thread_checker_unittest.cc', 116 'thread_checker_unittest.cc',
117 'thread_unittest.cc', 117 'thread_unittest.cc',
118 'timedelta.h', 118 'timedelta.h',
119 'timestampaligner_unittest.cc',
119 'timeutils_unittest.cc', 120 'timeutils_unittest.cc',
120 'urlencode_unittest.cc', 121 'urlencode_unittest.cc',
121 'versionparsing_unittest.cc', 122 'versionparsing_unittest.cc',
122 # TODO(ronghuawu): Reenable this test. 123 # TODO(ronghuawu): Reenable this test.
123 # 'windowpicker_unittest.cc', 124 # 'windowpicker_unittest.cc',
124 ], 125 ],
125 'conditions': [ 126 'conditions': [
126 ['OS=="linux"', { 127 ['OS=="linux"', {
127 'sources': [ 128 'sources': [
128 'latebindingsymboltable_unittest.cc', 129 'latebindingsymboltable_unittest.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { 173 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
173 'defines': [ 174 'defines': [
174 'CARBON_DEPRECATED=YES', 175 'CARBON_DEPRECATED=YES',
175 ], 176 ],
176 }], 177 }],
177 ], # conditions 178 ], # conditions
178 }, 179 },
179 }, 180 },
180 ], 181 ],
181 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698