webrtc/webrtc/common.gyp
kwiberg@webrtc.org ac2d27d9ae 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
2015-02-26 14:01:28 +00:00

32 lines
870 B
Python

# Copyright (c) 2014 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': 'webrtc_common',
'type': 'static_library',
'sources': [
'common_types.cc',
'common_types.h',
'config.h',
'config.cc',
'engine_configurations.h',
'typedefs.h',
],
},
{
'target_name': 'gtest_prod',
'type': 'static_library',
'sources': [
'test/testsupport/gtest_prod_util.h',
],
},
],
}