Fix style violations in common_types.h and config.h
Mostly, it's about moving constructors and descructors to the .cc files, so that they won't be inlined everywhere. The reason this CL is so big is that a lot of code was using common_types.h without declaring a dependency on webrtc_common, which broke the build once common_types.h started to depend on common_types.cc. BUG=163 R=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/26089004 Cr-Commit-Position: refs/heads/master@{#8516} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8516 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
891d48393e
commit
ac2d27d9ae
@ -377,6 +377,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
|
'<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
|
||||||
'<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib',
|
'<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_render_module',
|
'<(webrtc_root)/modules/modules.gyp:video_render_module',
|
||||||
'<(webrtc_root)/webrtc.gyp:webrtc',
|
'<(webrtc_root)/webrtc.gyp:webrtc',
|
||||||
'<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
|
'<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
|
||||||
|
@ -75,6 +75,7 @@
|
|||||||
'examples/peerconnection/server/utils.h',
|
'examples/peerconnection/server/utils.h',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'libjingle.gyp:libjingle',
|
'libjingle.gyp:libjingle',
|
||||||
],
|
],
|
||||||
# TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations.
|
# TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations.
|
||||||
|
@ -192,6 +192,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/testing/gmock.gyp:gmock',
|
'<(DEPTH)/testing/gmock.gyp:gmock',
|
||||||
'<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils',
|
'<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'libjingle.gyp:libjingle',
|
'libjingle.gyp:libjingle',
|
||||||
'libjingle.gyp:libjingle_p2p',
|
'libjingle.gyp:libjingle_p2p',
|
||||||
'libjingle.gyp:libjingle_peerconnection',
|
'libjingle.gyp:libjingle_peerconnection',
|
||||||
|
@ -240,6 +240,7 @@ if (!build_with_chromium) {
|
|||||||
|
|
||||||
source_set("webrtc_common") {
|
source_set("webrtc_common") {
|
||||||
sources = [
|
sources = [
|
||||||
|
"common_types.cc",
|
||||||
"common_types.h",
|
"common_types.h",
|
||||||
"config.h",
|
"config.h",
|
||||||
"config.cc",
|
"config.cc",
|
||||||
@ -247,12 +248,6 @@ source_set("webrtc_common") {
|
|||||||
"typedefs.h",
|
"typedefs.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
configs += [ ":common_config" ]
|
configs += [ ":common_config" ]
|
||||||
public_configs = [ ":common_inherited_config" ]
|
public_configs = [ ":common_inherited_config" ]
|
||||||
}
|
}
|
||||||
|
@ -300,6 +300,8 @@ static_library("rtc_base") {
|
|||||||
"../overrides/webrtc/base/logging.h",
|
"../overrides/webrtc/base/logging.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
deps += [ "..:webrtc_common" ]
|
||||||
|
|
||||||
if (is_win) {
|
if (is_win) {
|
||||||
sources += [ "../overrides/webrtc/base/win32socketinit.cc" ]
|
sources += [ "../overrides/webrtc/base/win32socketinit.cc" ]
|
||||||
}
|
}
|
||||||
@ -376,6 +378,8 @@ static_library("rtc_base") {
|
|||||||
"windowpicker.h",
|
"windowpicker.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
deps += [ "..:webrtc_common" ]
|
||||||
|
|
||||||
if (is_posix) {
|
if (is_posix) {
|
||||||
sources += [
|
sources += [
|
||||||
"latebindingsymboltable.cc",
|
"latebindingsymboltable.cc",
|
||||||
|
@ -59,6 +59,7 @@
|
|||||||
'target_name': 'rtc_base',
|
'target_name': 'rtc_base',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'rtc_base_approved',
|
'rtc_base_approved',
|
||||||
],
|
],
|
||||||
'defines': [
|
'defines': [
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
'target_name': 'webrtc_common',
|
'target_name': 'webrtc_common',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'sources': [
|
'sources': [
|
||||||
|
'common_types.cc',
|
||||||
'common_types.h',
|
'common_types.h',
|
||||||
'config.h',
|
'config.h',
|
||||||
'config.cc',
|
'config.cc',
|
||||||
|
@ -226,11 +226,5 @@ if (rtc_build_armv7_neon) {
|
|||||||
"-ffat-lto-objects",
|
"-ffat-lto-objects",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
37
webrtc/common_types.cc
Normal file
37
webrtc/common_types.cc
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2012 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "webrtc/common_types.h"
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
namespace webrtc {
|
||||||
|
|
||||||
|
int InStream::Rewind() { return -1; }
|
||||||
|
|
||||||
|
int OutStream::Rewind() { return -1; }
|
||||||
|
|
||||||
|
StreamDataCounters::StreamDataCounters() : first_packet_time_ms(-1) {}
|
||||||
|
|
||||||
|
RTPHeader::RTPHeader()
|
||||||
|
: markerBit(false),
|
||||||
|
payloadType(0),
|
||||||
|
sequenceNumber(0),
|
||||||
|
timestamp(0),
|
||||||
|
ssrc(0),
|
||||||
|
numCSRCs(0),
|
||||||
|
paddingLength(0),
|
||||||
|
headerLength(0),
|
||||||
|
payload_type_frequency(0),
|
||||||
|
extension() {
|
||||||
|
memset(&arrOfCSRCs, 0, sizeof(arrOfCSRCs));
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace webrtc
|
@ -57,7 +57,7 @@ class InStream
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual int Read(void *buf, size_t len) = 0;
|
virtual int Read(void *buf, size_t len) = 0;
|
||||||
virtual int Rewind() {return -1;}
|
virtual int Rewind();
|
||||||
virtual ~InStream() {}
|
virtual ~InStream() {}
|
||||||
protected:
|
protected:
|
||||||
InStream() {}
|
InStream() {}
|
||||||
@ -67,7 +67,7 @@ class OutStream
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual bool Write(const void *buf, size_t len) = 0;
|
virtual bool Write(const void *buf, size_t len) = 0;
|
||||||
virtual int Rewind() {return -1;}
|
virtual int Rewind();
|
||||||
virtual ~OutStream() {}
|
virtual ~OutStream() {}
|
||||||
protected:
|
protected:
|
||||||
OutStream() {}
|
OutStream() {}
|
||||||
@ -809,19 +809,7 @@ struct RTPHeaderExtension {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct RTPHeader {
|
struct RTPHeader {
|
||||||
RTPHeader()
|
RTPHeader();
|
||||||
: markerBit(false),
|
|
||||||
payloadType(0),
|
|
||||||
sequenceNumber(0),
|
|
||||||
timestamp(0),
|
|
||||||
ssrc(0),
|
|
||||||
numCSRCs(0),
|
|
||||||
paddingLength(0),
|
|
||||||
headerLength(0),
|
|
||||||
payload_type_frequency(0),
|
|
||||||
extension() {
|
|
||||||
memset(&arrOfCSRCs, 0, sizeof(arrOfCSRCs));
|
|
||||||
}
|
|
||||||
|
|
||||||
bool markerBit;
|
bool markerBit;
|
||||||
uint8_t payloadType;
|
uint8_t payloadType;
|
||||||
@ -870,7 +858,7 @@ struct RtpPacketCounter {
|
|||||||
|
|
||||||
// Data usage statistics for a (rtp) stream.
|
// Data usage statistics for a (rtp) stream.
|
||||||
struct StreamDataCounters {
|
struct StreamDataCounters {
|
||||||
StreamDataCounters() : first_packet_time_ms(-1) {}
|
StreamDataCounters();
|
||||||
|
|
||||||
void Add(const StreamDataCounters& other) {
|
void Add(const StreamDataCounters& other) {
|
||||||
transmitted.Add(other.transmitted);
|
transmitted.Add(other.transmitted);
|
||||||
|
@ -44,7 +44,10 @@ source_set("common_video") {
|
|||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
deps = [ "../system_wrappers" ]
|
deps = [
|
||||||
|
"..:webrtc_common",
|
||||||
|
"../system_wrappers",
|
||||||
|
]
|
||||||
|
|
||||||
if (rtc_build_libyuv) {
|
if (rtc_build_libyuv) {
|
||||||
deps += [ "$rtc_libyuv_dir" ]
|
deps += [ "$rtc_libyuv_dir" ]
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
'libyuv/include',
|
'libyuv/include',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
'direct_dependent_settings': {
|
'direct_dependent_settings': {
|
||||||
|
@ -29,6 +29,17 @@ std::string RtpExtension::ToString() const {
|
|||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VideoStream::VideoStream()
|
||||||
|
: width(0),
|
||||||
|
height(0),
|
||||||
|
max_framerate(-1),
|
||||||
|
min_bitrate_bps(-1),
|
||||||
|
target_bitrate_bps(-1),
|
||||||
|
max_bitrate_bps(-1),
|
||||||
|
max_qp(-1) {}
|
||||||
|
|
||||||
|
VideoStream::~VideoStream() = default;
|
||||||
|
|
||||||
std::string VideoStream::ToString() const {
|
std::string VideoStream::ToString() const {
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << "{width: " << width;
|
ss << "{width: " << width;
|
||||||
@ -51,6 +62,13 @@ std::string VideoStream::ToString() const {
|
|||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VideoEncoderConfig::VideoEncoderConfig()
|
||||||
|
: content_type(kRealtimeVideo),
|
||||||
|
encoder_specific_settings(NULL),
|
||||||
|
min_transmit_bitrate_bps(0) {}
|
||||||
|
|
||||||
|
VideoEncoderConfig::~VideoEncoderConfig() = default;
|
||||||
|
|
||||||
std::string VideoEncoderConfig::ToString() const {
|
std::string VideoEncoderConfig::ToString() const {
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
|
|
||||||
|
@ -56,14 +56,8 @@ struct RtpExtension {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct VideoStream {
|
struct VideoStream {
|
||||||
VideoStream()
|
VideoStream();
|
||||||
: width(0),
|
~VideoStream();
|
||||||
height(0),
|
|
||||||
max_framerate(-1),
|
|
||||||
min_bitrate_bps(-1),
|
|
||||||
target_bitrate_bps(-1),
|
|
||||||
max_bitrate_bps(-1),
|
|
||||||
max_qp(-1) {}
|
|
||||||
std::string ToString() const;
|
std::string ToString() const;
|
||||||
|
|
||||||
size_t width;
|
size_t width;
|
||||||
@ -95,11 +89,8 @@ struct VideoEncoderConfig {
|
|||||||
kScreenshare,
|
kScreenshare,
|
||||||
};
|
};
|
||||||
|
|
||||||
VideoEncoderConfig()
|
VideoEncoderConfig();
|
||||||
: content_type(kRealtimeVideo),
|
~VideoEncoderConfig();
|
||||||
encoder_specific_settings(NULL),
|
|
||||||
min_transmit_bitrate_bps(0) {}
|
|
||||||
|
|
||||||
std::string ToString() const;
|
std::string ToString() const;
|
||||||
|
|
||||||
std::vector<VideoStream> streams;
|
std::vector<VideoStream> streams;
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(talk_root)/libjingle.gyp:libjingle_media',
|
'<(talk_root)/libjingle.gyp:libjingle_media',
|
||||||
'<(webrtc_root)/base/base.gyp:rtc_base',
|
'<(webrtc_root)/base/base.gyp:rtc_base',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/libjingle/xmpp/xmpp.gyp:rtc_xmpp',
|
'<(webrtc_root)/libjingle/xmpp/xmpp.gyp:rtc_xmpp',
|
||||||
'<(DEPTH)/third_party/expat/expat.gyp:expat',
|
'<(DEPTH)/third_party/expat/expat.gyp:expat',
|
||||||
],
|
],
|
||||||
|
@ -72,6 +72,7 @@ source_set("audio_coding") {
|
|||||||
":neteq",
|
":neteq",
|
||||||
":pcm16b",
|
":pcm16b",
|
||||||
":red",
|
":red",
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_audio",
|
"../../common_audio",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
]
|
]
|
||||||
@ -89,6 +90,7 @@ source_set("audio_decoder_interface") {
|
|||||||
]
|
]
|
||||||
configs += [ "../..:common_config" ]
|
configs += [ "../..:common_config" ]
|
||||||
public_configs = [ "../..:common_inherited_config" ]
|
public_configs = [ "../..:common_inherited_config" ]
|
||||||
|
deps = [ "../..:webrtc_common" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
source_set("audio_encoder_interface") {
|
source_set("audio_encoder_interface") {
|
||||||
@ -98,6 +100,7 @@ source_set("audio_encoder_interface") {
|
|||||||
]
|
]
|
||||||
configs += [ "../..:common_config" ]
|
configs += [ "../..:common_config" ]
|
||||||
public_configs = [ "../..:common_inherited_config" ]
|
public_configs = [ "../..:common_inherited_config" ]
|
||||||
|
deps = [ "../..:webrtc_common" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
config("cng_config") {
|
config("cng_config") {
|
||||||
@ -439,12 +442,6 @@ source_set("isac") {
|
|||||||
"codecs/isac/main/source/transform.c",
|
"codecs/isac/main/source/transform.c",
|
||||||
]
|
]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_linux) {
|
if (is_linux) {
|
||||||
libs = [ "m" ]
|
libs = [ "m" ]
|
||||||
}
|
}
|
||||||
@ -518,12 +515,6 @@ source_set("isacfix") {
|
|||||||
"codecs/isac/fix/source/transform_tables.c",
|
"codecs/isac/fix/source/transform_tables.c",
|
||||||
]
|
]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_win) {
|
if (!is_win) {
|
||||||
defines = [ "WEBRTC_LINUX" ]
|
defines = [ "WEBRTC_LINUX" ]
|
||||||
}
|
}
|
||||||
@ -786,6 +777,7 @@ source_set("neteq") {
|
|||||||
":isac",
|
":isac",
|
||||||
":isacfix",
|
":isacfix",
|
||||||
":pcm16b",
|
":pcm16b",
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_audio",
|
"../../common_audio",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
rtc_opus_dir,
|
rtc_opus_dir,
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'iSACFix',
|
'iSACFix',
|
||||||
'PCM16B',
|
'PCM16B',
|
||||||
'red',
|
'red',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
@ -37,6 +38,7 @@
|
|||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<@(audio_coding_dependencies)',
|
'<@(audio_coding_dependencies)',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'neteq',
|
'neteq',
|
||||||
],
|
],
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
@ -122,6 +124,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'audio_coding_module',
|
'audio_coding_module',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/test/test.gyp:test_support',
|
'<(webrtc_root)/test/test.gyp:test_support',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
||||||
@ -140,6 +143,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'audio_coding_module',
|
'audio_coding_module',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/test/test.gyp:test_support',
|
'<(webrtc_root)/test/test.gyp:test_support',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<@(neteq_dependencies)',
|
'<@(neteq_dependencies)',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
],
|
],
|
||||||
'defines': [
|
'defines': [
|
||||||
'<@(neteq_defines)',
|
'<@(neteq_defines)',
|
||||||
|
@ -234,6 +234,7 @@
|
|||||||
'iLBC',
|
'iLBC',
|
||||||
'iSAC',
|
'iSAC',
|
||||||
'CNG',
|
'CNG',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
],
|
],
|
||||||
'direct_dependent_settings': {
|
'direct_dependent_settings': {
|
||||||
|
@ -178,6 +178,7 @@ source_set("audio_device") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../base:rtc_base_approved",
|
"../../base:rtc_base_approved",
|
||||||
"../../common_audio",
|
"../../common_audio",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'webrtc_utility',
|
'webrtc_utility',
|
||||||
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
|
@ -126,7 +126,7 @@ source_set("audio_processing") {
|
|||||||
public_configs = [ "../..:common_inherited_config" ]
|
public_configs = [ "../..:common_inherited_config" ]
|
||||||
|
|
||||||
defines = []
|
defines = []
|
||||||
deps = []
|
deps = [ "../..:webrtc_common" ]
|
||||||
|
|
||||||
if (aec_debug_dump) {
|
if (aec_debug_dump) {
|
||||||
defines += [ "WEBRTC_AEC_DEBUG_DUMP" ]
|
defines += [ "WEBRTC_AEC_DEBUG_DUMP" ]
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
},
|
},
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
'<(webrtc_root)/modules/modules.gyp:iSAC',
|
'<(webrtc_root)/modules/modules.gyp:iSAC',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
|
@ -44,6 +44,7 @@ source_set("media_file") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
"../../common_audio",
|
"../../common_audio",
|
||||||
]
|
]
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
'target_name': 'media_file',
|
'target_name': 'media_file',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
],
|
],
|
||||||
|
@ -79,6 +79,7 @@
|
|||||||
'<(DEPTH)/testing/gmock.gyp:gmock',
|
'<(DEPTH)/testing/gmock.gyp:gmock',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_capture',
|
'<(webrtc_root)/modules/modules.gyp:video_capture',
|
||||||
'<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
|
'<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
|
||||||
@ -361,6 +362,7 @@
|
|||||||
'type': '<(gtest_target_type)',
|
'type': '<(gtest_target_type)',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
'<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
|
'<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
|
||||||
'<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9',
|
'<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9',
|
||||||
|
@ -18,6 +18,7 @@ source_set("remote_bitrate_estimator") {
|
|||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":rbe_components",
|
":rbe_components",
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -42,6 +43,7 @@ source_set("rbe_components") {
|
|||||||
|
|
||||||
configs += [ "../..:common_config" ]
|
configs += [ "../..:common_config" ]
|
||||||
public_configs = [ "../..:common_inherited_config" ]
|
public_configs = [ "../..:common_inherited_config" ]
|
||||||
|
deps = [ "../..:webrtc_common" ]
|
||||||
|
|
||||||
if (is_clang) {
|
if (is_clang) {
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
# Suppress warnings from Chrome's Clang plugins.
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
'target_name': 'remote_bitrate_estimator',
|
'target_name': 'remote_bitrate_estimator',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
|
@ -104,6 +104,7 @@ source_set("rtp_rtcp") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
"../pacing",
|
"../pacing",
|
||||||
"../remote_bitrate_estimator",
|
"../remote_bitrate_estimator",
|
||||||
|
@ -40,6 +40,7 @@ source_set("utility") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_audio",
|
"../../common_audio",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
"../audio_coding",
|
"../audio_coding",
|
||||||
|
@ -27,6 +27,7 @@ source_set("video_capture_module") {
|
|||||||
]
|
]
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_video",
|
"../../common_video",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
"../utility",
|
"../utility",
|
||||||
@ -87,6 +88,7 @@ if (!build_with_chromium) {
|
|||||||
"linux/video_capture_linux.cc",
|
"linux/video_capture_linux.cc",
|
||||||
"linux/video_capture_linux.h",
|
"linux/video_capture_linux.h",
|
||||||
]
|
]
|
||||||
|
deps += [ "../..:webrtc_common" ]
|
||||||
}
|
}
|
||||||
if (is_mac) {
|
if (is_mac) {
|
||||||
sources = [
|
sources = [
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'webrtc_utility',
|
'webrtc_utility',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
@ -55,6 +56,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'video_capture_module',
|
'video_capture_module',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
],
|
],
|
||||||
'conditions': [
|
'conditions': [
|
||||||
['OS=="linux"', {
|
['OS=="linux"', {
|
||||||
|
@ -85,6 +85,7 @@ source_set("video_coding") {
|
|||||||
":webrtc_i420",
|
":webrtc_i420",
|
||||||
":webrtc_vp8",
|
":webrtc_vp8",
|
||||||
":webrtc_vp9",
|
":webrtc_vp9",
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_video",
|
"../../common_video",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
]
|
]
|
||||||
@ -170,6 +171,7 @@ source_set("webrtc_vp8") {
|
|||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":video_coding_utility",
|
":video_coding_utility",
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_video",
|
"../../common_video",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
]
|
]
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'video_codecs_test_framework',
|
'video_codecs_test_framework',
|
||||||
'webrtc_video_coding',
|
'webrtc_video_coding',
|
||||||
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
||||||
'<(webrtc_root)/test/metrics.gyp:metrics',
|
'<(webrtc_root)/test/metrics.gyp:metrics',
|
||||||
'<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8',
|
'<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8',
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
'target_name': 'webrtc_vp8',
|
'target_name': 'webrtc_vp8',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
'<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:video_coding_utility',
|
'<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:video_coding_utility',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'webrtc_utility',
|
'webrtc_utility',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/test/test.gyp:test_support',
|
'<(webrtc_root)/test/test.gyp:test_support',
|
||||||
'<(webrtc_root)/test/metrics.gyp:metrics',
|
'<(webrtc_root)/test/metrics.gyp:metrics',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
|
@ -23,6 +23,7 @@ source_set("video_render_module") {
|
|||||||
]
|
]
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"../..:webrtc_common",
|
||||||
"../../common_video",
|
"../../common_video",
|
||||||
"../../system_wrappers",
|
"../../system_wrappers",
|
||||||
"../utility",
|
"../utility",
|
||||||
@ -87,6 +88,8 @@ if (!build_with_chromium) {
|
|||||||
"linux/video_x11_render.h",
|
"linux/video_x11_render.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
deps += [ "../..:webrtc_common" ]
|
||||||
|
|
||||||
libs += [ "Xext" ]
|
libs += [ "Xext" ]
|
||||||
}
|
}
|
||||||
if (is_mac) {
|
if (is_mac) {
|
||||||
@ -160,6 +163,8 @@ if (!build_with_chromium) {
|
|||||||
"ios/video_render_ios_view.mm",
|
"ios/video_render_ios_view.mm",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
deps += [ "../..:webrtc_common" ]
|
||||||
|
|
||||||
cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES.
|
cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'webrtc_utility',
|
'webrtc_utility',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
@ -56,6 +57,7 @@
|
|||||||
'target_name': 'video_render_module_internal_impl',
|
'target_name': 'video_render_module_internal_impl',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'video_render_module',
|
'video_render_module',
|
||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
@ -163,6 +165,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'video_render_module_internal_impl',
|
'video_render_module_internal_impl',
|
||||||
'webrtc_utility',
|
'webrtc_utility',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
],
|
],
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(webrtc_root)/base/base.gyp:rtc_base',
|
'<(webrtc_root)/base/base.gyp:rtc_base',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
],
|
],
|
||||||
'cflags_cc!': [
|
'cflags_cc!': [
|
||||||
'-Wnon-virtual-dtor',
|
'-Wnon-virtual-dtor',
|
||||||
|
@ -101,12 +101,6 @@ static_library("system_wrappers") {
|
|||||||
|
|
||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
public_configs = [
|
public_configs = [
|
||||||
"..:common_inherited_config",
|
"..:common_inherited_config",
|
||||||
]
|
]
|
||||||
@ -119,7 +113,7 @@ static_library("system_wrappers") {
|
|||||||
|
|
||||||
defines = []
|
defines = []
|
||||||
libs = []
|
libs = []
|
||||||
deps = []
|
deps = [ "..:webrtc_common" ]
|
||||||
|
|
||||||
if (rtc_use_direct_trace) {
|
if (rtc_use_direct_trace) {
|
||||||
defines += [ "WEBRTC_DIRECT_TRACE" ]
|
defines += [ "WEBRTC_DIRECT_TRACE" ]
|
||||||
@ -198,12 +192,6 @@ source_set("field_trial_default") {
|
|||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config" ]
|
public_configs = [ "..:common_inherited_config" ]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":system_wrappers",
|
":system_wrappers",
|
||||||
]
|
]
|
||||||
@ -217,12 +205,6 @@ source_set("metrics_default") {
|
|||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config" ]
|
public_configs = [ "..:common_inherited_config" ]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":system_wrappers",
|
":system_wrappers",
|
||||||
]
|
]
|
||||||
@ -233,12 +215,6 @@ source_set("system_wrappers_default") {
|
|||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config" ]
|
public_configs = [ "..:common_inherited_config" ]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":field_trial_default",
|
":field_trial_default",
|
||||||
":metrics_default",
|
":metrics_default",
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
'target_name': 'system_wrappers',
|
'target_name': 'system_wrappers',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'../base/base.gyp:rtc_base_approved',
|
'../base/base.gyp:rtc_base_approved',
|
||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
|
@ -25,17 +25,12 @@ source_set("field_trial") {
|
|||||||
]
|
]
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"..:webrtc_common",
|
||||||
"../system_wrappers",
|
"../system_wrappers",
|
||||||
]
|
]
|
||||||
|
|
||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config"]
|
public_configs = [ "..:common_inherited_config"]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
source_set("test_support") {
|
source_set("test_support") {
|
||||||
@ -72,12 +67,6 @@ source_set("test_support") {
|
|||||||
|
|
||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config"]
|
public_configs = [ "..:common_inherited_config"]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
source_set("test_support_main") {
|
source_set("test_support_main") {
|
||||||
@ -100,10 +89,4 @@ source_set("test_support_main") {
|
|||||||
|
|
||||||
configs += [ "..:common_config" ]
|
configs += [ "..:common_config" ]
|
||||||
public_configs = [ "..:common_inherited_config"]
|
public_configs = [ "..:common_inherited_config"]
|
||||||
|
|
||||||
if (is_clang) {
|
|
||||||
# Suppress warnings from Chrome's Clang plugins.
|
|
||||||
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
|
|
||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
@ -64,6 +65,7 @@
|
|||||||
'rtp_file_writer.h',
|
'rtp_file_writer.h',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(DEPTH)/webrtc/common.gyp:webrtc_common',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
|
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
|
||||||
],
|
],
|
||||||
@ -76,6 +78,7 @@
|
|||||||
'field_trial.h',
|
'field_trial.h',
|
||||||
],
|
],
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
||||||
'<(webrtc_root)/base/base.gyp:rtc_base',
|
'<(webrtc_root)/base/base.gyp:rtc_base',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/modules/modules.gyp:media_file',
|
'<(webrtc_root)/modules/modules.gyp:media_file',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_render',
|
'<(webrtc_root)/modules/modules.gyp:video_render',
|
||||||
'<(webrtc_root)/test/test.gyp:frame_generator',
|
'<(webrtc_root)/test/test.gyp:frame_generator',
|
||||||
|
@ -34,6 +34,9 @@ source_set("video") {
|
|||||||
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
configs -= [ "//build/config/clang:find_bad_constructs" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
deps = [ "../video_engine:video_engine_core" ]
|
deps = [
|
||||||
|
"..:webrtc_common",
|
||||||
|
"../video_engine:video_engine_core",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,6 +109,7 @@ source_set("video_engine_core") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"..:webrtc_common",
|
||||||
"../common_video",
|
"../common_video",
|
||||||
"../modules/bitrate_controller",
|
"../modules/bitrate_controller",
|
||||||
"../modules/rtp_rtcp",
|
"../modules/rtp_rtcp",
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
'target_name': 'vie_auto_test',
|
'target_name': 'vie_auto_test',
|
||||||
'type': 'executable',
|
'type': 'executable',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
|
'<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
'target_name': 'libvietest',
|
'target_name': 'libvietest',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
'<(webrtc_root)/test/test.gyp:test_support',
|
'<(webrtc_root)/test/test.gyp:test_support',
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
'target_name': 'video_engine_core',
|
'target_name': 'video_engine_core',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
|
|
||||||
# common_video
|
# common_video
|
||||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||||
|
@ -96,6 +96,7 @@ source_set("voice_engine") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
"..:webrtc_common",
|
||||||
"../common_audio",
|
"../common_audio",
|
||||||
"../modules/audio_coding",
|
"../modules/audio_coding",
|
||||||
"../modules/audio_conference_mixer",
|
"../modules/audio_conference_mixer",
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
'target_name': 'voice_engine',
|
'target_name': 'voice_engine',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
||||||
'<(webrtc_root)/modules/modules.gyp:audio_coding_module',
|
'<(webrtc_root)/modules/modules.gyp:audio_coding_module',
|
||||||
'<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
|
'<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
'type': 'loadable_module',
|
'type': 'loadable_module',
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/third_party/icu/icu.gyp:icuuc',
|
'<(DEPTH)/third_party/icu/icu.gyp:icuuc',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
|
'<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_render_module_internal_impl',
|
'<(webrtc_root)/modules/modules.gyp:video_render_module_internal_impl',
|
||||||
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
|
||||||
|
@ -146,6 +146,7 @@
|
|||||||
'dependencies': [
|
'dependencies': [
|
||||||
'<(DEPTH)/testing/gmock.gyp:gmock',
|
'<(DEPTH)/testing/gmock.gyp:gmock',
|
||||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||||
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
||||||
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
|
'<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_capture',
|
'<(webrtc_root)/modules/modules.gyp:video_capture',
|
||||||
'<(webrtc_root)/modules/modules.gyp:video_render',
|
'<(webrtc_root)/modules/modules.gyp:video_render',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user