aboutsummaryrefslogtreecommitdiff
path: root/webrtc/base/base_tests.gyp
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2015-12-01 17:07:48 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-12-01 17:07:48 +0000
commita4acd9d6bc9b3b033d7d274316e75ee067df8d20 (patch)
tree672a185b294789cf991f385c3e395dd63bea9063 /webrtc/base/base_tests.gyp
parent3681b90ba4fe7a27232dd3e27897d5d7ed9d651c (diff)
parentfe8b4a657979b49e1701bd92f6d5814a99e0b2be (diff)
downloadwebrtc-a4acd9d6bc9b3b033d7d274316e75ee067df8d20.tar.gz
Merge changes I7bbf776e,I1b827825
am: fe8b4a6579 * commit 'fe8b4a657979b49e1701bd92f6d5814a99e0b2be': (7237 commits) WIP: Changes after merge commit 'cb3f9bd' Make the nonlinear beamformer steerable Utilize bitrate above codec max to protect video. Enable VP9 internal resize by default. Filter overlapping RTP header extensions. Make VCMEncodedFrameCallback const. MediaCodecVideoEncoder: Add number of quality resolution downscales to Encoded callback. Remove redudant encoder rate calls. Create isolate files for nonparallel tests. Register header extensions in RtpRtcpObserver to avoid log spam. Make an enum class out of NetEqDecoder, and hide the neteq_decoders_ table ACM: Move NACK functionality inside NetEq Fix chromium-style warnings in webrtc/sound/. Create a 'webrtc_nonparallel_tests' target. Update scalability structure data according to updates in the RTP payload profile. audio_coding: rename interface -> include Rewrote perform_action_on_all_files to be parallell. Update reference indices according to updates in the RTP payload profile. Disable P2PTransport...TestFailoverControlledSide on Memcheck pass clangcl compile options to ignore warnings in gflags.cc ...
Diffstat (limited to 'webrtc/base/base_tests.gyp')
-rw-r--r--webrtc/base/base_tests.gyp155
1 files changed, 155 insertions, 0 deletions
diff --git a/webrtc/base/base_tests.gyp b/webrtc/base/base_tests.gyp
new file mode 100644
index 0000000000..ee371f4a62
--- /dev/null
+++ b/webrtc/base/base_tests.gyp
@@ -0,0 +1,155 @@
+# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
+#
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file in the root of the source
+# tree. An additional intellectual property rights grant can be found
+# in the file PATENTS. All contributing project authors may
+# be found in the AUTHORS file in the root of the source tree.
+{
+ 'includes': [ '../build/common.gypi', ],
+ 'targets': [
+ {
+ 'target_name': 'rtc_base_tests_utils',
+ 'type': 'static_library',
+ 'sources': [
+ 'unittest_main.cc',
+ # Also use this as a convenient dumping ground for misc files that are
+ # included by multiple targets below.
+ 'fakenetwork.h',
+ 'fakesslidentity.h',
+ 'faketaskrunner.h',
+ 'gunit.h',
+ 'testbase64.h',
+ 'testechoserver.h',
+ 'testutils.h',
+ ],
+ 'defines': [
+ 'GTEST_RELATIVE_PATH',
+ ],
+ 'dependencies': [
+ 'base.gyp:rtc_base',
+ '<(DEPTH)/testing/gtest.gyp:gtest',
+ '<(webrtc_root)/test/test.gyp:field_trial',
+ ],
+ 'direct_dependent_settings': {
+ 'defines': [
+ 'GTEST_RELATIVE_PATH',
+ ],
+ },
+ 'export_dependent_settings': [
+ '<(DEPTH)/testing/gtest.gyp:gtest',
+ ],
+ },
+ {
+ 'target_name': 'rtc_base_tests',
+ 'type': 'none',
+ 'direct_dependent_settings': {
+ 'sources': [
+ 'array_view_unittest.cc',
+ 'atomicops_unittest.cc',
+ 'autodetectproxy_unittest.cc',
+ 'bandwidthsmoother_unittest.cc',
+ 'base64_unittest.cc',
+ 'basictypes_unittest.cc',
+ 'bind_unittest.cc',
+ 'bitbuffer_unittest.cc',
+ 'buffer_unittest.cc',
+ 'bufferqueue_unittest.cc',
+ 'bytebuffer_unittest.cc',
+ 'byteorder_unittest.cc',
+ 'callback_unittest.cc',
+ 'crc32_unittest.cc',
+ 'criticalsection_unittest.cc',
+ 'event_tracer_unittest.cc',
+ 'event_unittest.cc',
+ 'exp_filter_unittest.cc',
+ 'filerotatingstream_unittest.cc',
+ 'fileutils_unittest.cc',
+ 'helpers_unittest.cc',
+ 'httpbase_unittest.cc',
+ 'httpcommon_unittest.cc',
+ 'httpserver_unittest.cc',
+ 'ipaddress_unittest.cc',
+ 'logging_unittest.cc',
+ 'maybe_unittest.cc',
+ 'md5digest_unittest.cc',
+ 'messagedigest_unittest.cc',
+ 'messagequeue_unittest.cc',
+ 'multipart_unittest.cc',
+ 'nat_unittest.cc',
+ 'network_unittest.cc',
+ 'optionsfile_unittest.cc',
+ 'pathutils_unittest.cc',
+ 'profiler_unittest.cc',
+ 'proxy_unittest.cc',
+ 'proxydetect_unittest.cc',
+ 'ratelimiter_unittest.cc',
+ 'ratetracker_unittest.cc',
+ 'referencecountedsingletonfactory_unittest.cc',
+ 'rollingaccumulator_unittest.cc',
+ 'scopedptrcollection_unittest.cc',
+ 'sha1digest_unittest.cc',
+ 'sharedexclusivelock_unittest.cc',
+ 'signalthread_unittest.cc',
+ 'sigslot_unittest.cc',
+ 'sigslottester.h',
+ 'sigslottester.h.pump',
+ 'stream_unittest.cc',
+ 'stringencode_unittest.cc',
+ 'stringutils_unittest.cc',
+ # TODO(ronghuawu): Reenable this test.
+ # 'systeminfo_unittest.cc',
+ 'task_unittest.cc',
+ 'testclient_unittest.cc',
+ 'thread_checker_unittest.cc',
+ 'thread_unittest.cc',
+ 'timeutils_unittest.cc',
+ 'urlencode_unittest.cc',
+ 'versionparsing_unittest.cc',
+ # TODO(ronghuawu): Reenable this test.
+ # 'windowpicker_unittest.cc',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'sources': [
+ 'latebindingsymboltable_unittest.cc',
+ # TODO(ronghuawu): Reenable this test.
+ # 'linux_unittest.cc',
+ 'linuxfdwalk_unittest.cc',
+ ],
+ }],
+ ['OS=="win"', {
+ 'sources': [
+ 'win32_unittest.cc',
+ 'win32regkey_unittest.cc',
+ 'win32window_unittest.cc',
+ 'win32windowpicker_unittest.cc',
+ 'winfirewall_unittest.cc',
+ ],
+ 'sources!': [
+ # TODO(pbos): Reenable this test.
+ 'win32windowpicker_unittest.cc',
+ ],
+ }],
+ ['OS=="mac"', {
+ 'sources': [
+ 'macutils_unittest.cc',
+ ],
+ }],
+ ['os_posix==1', {
+ 'sources': [
+ 'ssladapter_unittest.cc',
+ 'sslidentity_unittest.cc',
+ 'sslstreamadapter_unittest.cc',
+ ],
+ }],
+ ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
+ 'defines': [
+ 'CARBON_DEPRECATED=YES',
+ ],
+ }],
+ ], # conditions
+ },
+ },
+ ],
+}