d7e34e1086
It is now easier to use an external libyuv library. Fix some GYP errors. Remove the temporary webrtc_base target (depends on https://codereview.chromium.org/865603002/ being landed first). BUG=4185 R=andresp@webrtc.org, andrew@webrtc.org, perkj@webrtc.org Review URL: https://webrtc-codereview.appspot.com/39579004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@8154 4adac7df-926f-26a2-2b94-8c16560cd09d
31 lines
843 B
Python
31 lines
843 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.h',
|
|
'config.h',
|
|
'config.cc',
|
|
'engine_configurations.h',
|
|
'typedefs.h',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'gtest_prod',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'test/testsupport/gtest_prod_util.h',
|
|
],
|
|
},
|
|
],
|
|
}
|