Include files from webrtc/.. paths in test/

BUG=1662
R=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1549004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4105 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-05-27 08:02:22 +00:00
parent 7f3f8bc5a6
commit 34741c8b0e
19 changed files with 35 additions and 35 deletions

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/libtest/include/bit_flip_encryption.h"
#include "webrtc/test/libtest/include/bit_flip_encryption.h"
#include <cstdlib>

View File

@ -8,13 +8,13 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/libtest/include/random_encryption.h"
#include "webrtc/test/libtest/include/random_encryption.h"
#include <algorithm>
#include <cstdlib>
#include <cmath>
#include <cstdlib>
#include "video_engine/vie_defines.h"
#include "webrtc/video_engine/vie_defines.h"
static int Saturate(int value, int min, int max) {
return std::min(std::max(value, min), max);

View File

@ -11,7 +11,7 @@
#ifndef SRC_VIDEO_ENGINE_TEST_AUTO_TEST_HELPERS_BIT_FLIP_ENCRYPTION_H_
#define SRC_VIDEO_ENGINE_TEST_AUTO_TEST_HELPERS_BIT_FLIP_ENCRYPTION_H_
#include "common_types.h"
#include "webrtc/common_types.h"
// This encryption scheme will randomly flip bits every now and then in the
// input data.

View File

@ -11,7 +11,7 @@
#ifndef SRC_VIDEO_ENGINE_TEST_AUTO_TEST_HELPERS_RANDOM_ENCRYPTION_H_
#define SRC_VIDEO_ENGINE_TEST_AUTO_TEST_HELPERS_RANDOM_ENCRYPTION_H_
#include "common_types.h"
#include "webrtc/common_types.h"
// These algorithms attempt to create an uncrackable encryption
// scheme by completely disregarding the input data.

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/test_suite.h"
#include "webrtc/test/test_suite.h"
int main(int argc, char** argv) {
webrtc::test::TestSuite test_suite(argc, argv);

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/testsupport/fileutils.h"
#include "webrtc/test/testsupport/fileutils.h"
#ifdef WIN32
#include <direct.h>
@ -26,7 +26,7 @@
#include <cstdio>
#include <cstring>
#include "typedefs.h" // For architecture defines
#include "webrtc/typedefs.h" // For architecture defines
namespace webrtc {
namespace test {

View File

@ -8,13 +8,13 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/fileutils.h"
#include "webrtc/test/testsupport/fileutils.h"
#include <cstdio>
#include <list>
#include <string>
#include "gtest/gtest.h"
#include "testing/gtest/include/gtest/gtest.h"
#ifdef WIN32
#define chdir _chdir

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/frame_reader.h"
#include "webrtc/test/testsupport/frame_reader.h"
#include <cassert>

View File

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/frame_reader.h"
#include "webrtc/test/testsupport/frame_reader.h"
#include "gtest/gtest.h"
#include "testsupport/fileutils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {
namespace test {

View File

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/frame_writer.h"
#include "webrtc/test/testsupport/frame_writer.h"
#include "gtest/gtest.h"
#include "testsupport/fileutils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {
namespace test {

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#import "run_threaded_main_mac.h"
#import "webrtc/test/testsupport/mac/run_threaded_main_mac.h"
#import <Cocoa/Cocoa.h>

View File

@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/metrics/video_metrics.h"
#include "webrtc/test/testsupport/metrics/video_metrics.h"
#include <algorithm> // min_element, max_element
#include <cassert>
#include <cstdio>
#include "common_video/interface/i420_video_frame.h"
#include "common_video/libyuv/include/webrtc_libyuv.h"
#include "webrtc/common_video/interface/i420_video_frame.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
namespace webrtc {
namespace test {

View File

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/metrics/video_metrics.h"
#include "webrtc/test/testsupport/metrics/video_metrics.h"
#include "gtest/gtest.h"
#include "testsupport/fileutils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/test/testsupport/fileutils.h"
namespace webrtc {

View File

@ -11,9 +11,9 @@
#ifndef WEBRTC_TEST_TESTSUPPORT_MOCK_MOCK_FRAME_READER_H_
#define WEBRTC_TEST_TESTSUPPORT_MOCK_MOCK_FRAME_READER_H_
#include "testsupport/frame_reader.h"
#include "webrtc/test/testsupport/frame_reader.h"
#include "gmock/gmock.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace webrtc {
namespace test {

View File

@ -11,9 +11,9 @@
#ifndef WEBRTC_TEST_TESTSUPPORT_MOCK_MOCK_FRAME_WRITER_H_
#define WEBRTC_TEST_TESTSUPPORT_MOCK_MOCK_FRAME_WRITER_H_
#include "testsupport/frame_writer.h"
#include "webrtc/test/testsupport/frame_writer.h"
#include "gmock/gmock.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace webrtc {
namespace test {

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/packet_reader.h"
#include "webrtc/test/testsupport/packet_reader.h"
#include <cassert>
#include <cstdio>

View File

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "testsupport/packet_reader.h"
#include "webrtc/test/testsupport/packet_reader.h"
#include "gtest/gtest.h"
#include "testsupport/unittest_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/test/testsupport/unittest_utils.h"
namespace webrtc {
namespace test {

View File

@ -14,8 +14,8 @@
#include "webrtc/test/testsupport/perf_test.h"
#include <stdio.h>
#include <sstream>
#include <stdio.h>
namespace {

View File

@ -12,7 +12,7 @@
#include <string>
#include "gtest/gtest.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace webrtc {
namespace test {