
BUG=3379 R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22249004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7027 4adac7df-926f-26a2-2b94-8c16560cd09d
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
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': ['common.gypi',],
|
|
'variables': {
|
|
'merge_libs_dependencies': [
|
|
'../webrtc.gyp:webrtc',
|
|
'../sound/sound.gyp:rtc_sound',
|
|
'../libjingle/xmllite/xmllite.gyp:rtc_xmllite',
|
|
],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'no_op',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'<@(merge_libs_dependencies)',
|
|
],
|
|
'sources': ['no_op.cc',],
|
|
},
|
|
{
|
|
'target_name': 'merged_lib',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'no_op',
|
|
],
|
|
'actions': [
|
|
{
|
|
'variables': {
|
|
'output_lib_name': 'webrtc_merged',
|
|
'output_lib': '<(PRODUCT_DIR)/<(STATIC_LIB_PREFIX)<(output_lib_name)<(STATIC_LIB_SUFFIX)',
|
|
},
|
|
'action_name': 'merge_libs',
|
|
'inputs': ['<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)no_op<(EXECUTABLE_SUFFIX)'],
|
|
'outputs': ['<(output_lib)'],
|
|
'action': ['python',
|
|
'merge_libs.py',
|
|
'<(PRODUCT_DIR)',
|
|
'<(output_lib)',],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|