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

Side by Side Diff: webrtc/test/test_main.cc

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 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
« no previous file with comments | « webrtc/test/rtp_rtcp_observer.h ('k') | webrtc/test/testsupport/fileutils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "gflags/gflags.h" 11 #include "gflags/gflags.h"
12 #include "webrtc/base/logging.h" 12 #include "webrtc/rtc_base/logging.h"
13 #include "webrtc/system_wrappers/include/metrics_default.h" 13 #include "webrtc/system_wrappers/include/metrics_default.h"
14 #include "webrtc/test/field_trial.h" 14 #include "webrtc/test/field_trial.h"
15 #include "webrtc/test/gmock.h" 15 #include "webrtc/test/gmock.h"
16 #include "webrtc/test/gtest.h" 16 #include "webrtc/test/gtest.h"
17 #include "webrtc/test/testsupport/fileutils.h" 17 #include "webrtc/test/testsupport/fileutils.h"
18 #include "webrtc/test/testsupport/trace_to_stderr.h" 18 #include "webrtc/test/testsupport/trace_to_stderr.h"
19 19
20 #if defined(WEBRTC_IOS) 20 #if defined(WEBRTC_IOS)
21 #include "webrtc/test/ios/test_support.h" 21 #include "webrtc/test/ios/test_support.h"
22 #endif 22 #endif
(...skipping 26 matching lines...) Expand all
49 std::unique_ptr<webrtc::test::TraceToStderr> trace_to_stderr; 49 std::unique_ptr<webrtc::test::TraceToStderr> trace_to_stderr;
50 if (FLAGS_logs) 50 if (FLAGS_logs)
51 trace_to_stderr.reset(new webrtc::test::TraceToStderr); 51 trace_to_stderr.reset(new webrtc::test::TraceToStderr);
52 #if defined(WEBRTC_IOS) 52 #if defined(WEBRTC_IOS)
53 rtc::test::InitTestSuite(RUN_ALL_TESTS, argc, argv); 53 rtc::test::InitTestSuite(RUN_ALL_TESTS, argc, argv);
54 rtc::test::RunTestsFromIOSApp(); 54 rtc::test::RunTestsFromIOSApp();
55 #endif 55 #endif
56 56
57 return RUN_ALL_TESTS(); 57 return RUN_ALL_TESTS();
58 } 58 }
OLDNEW
« no previous file with comments | « webrtc/test/rtp_rtcp_observer.h ('k') | webrtc/test/testsupport/fileutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698