3ce62fcfe4
The main reason is to depend on all ("*") targets in voice_engine.gyp and video_engine.gyp. We don't want the merge_lib targets building by default, since they do funny stuff like delete some libraries. Review URL: http://webrtc-codereview.appspot.com/191003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@699 4adac7df-926f-26a2-2b94-8c16560cd09d
24 lines
684 B
Python
24 lines
684 B
Python
# Copyright (c) 2011 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',
|
|
'main/source/voice_engine_core.gypi',
|
|
],
|
|
|
|
# Test targets, excluded when building with Chromium.
|
|
'conditions': [
|
|
['build_with_chromium==0', {
|
|
'includes': [
|
|
'main/test/voice_engine_tests.gypi',
|
|
],
|
|
}],
|
|
],
|
|
}
|