1014101470
It turns out this doesn't fix the problem we're trying to solve... > Replace libjingle_root with talk_root variable. > > This CL is similar to https://review.webrtc.org/9019004/ > It is needed in order to be able to build with different > copies of libjingle. Having the libjingle_root variable didn't > make this possible, since relative paths in the .isolate files > ended up at the wrong directory level and .isolate files doesn't > support all the normal GYP variables like <(DEPTH). > > BUG=chromium:343106 > TEST=trybots passing compile step with clobber. > R=tommi@webrtc.org, wu@webrtc.org > > Review URL: https://webrtc-codereview.appspot.com/15709004 TBR=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14669004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6384 4adac7df-926f-26a2-2b94-8c16560cd09d
34 lines
969 B
Python
34 lines
969 B
Python
# Copyright (c) 2013 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.
|
|
|
|
{
|
|
'variables': {
|
|
'libjingle_root%': '<(DEPTH)',
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'All',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'third_party/openmax_dl/dl/dl.gyp:*',
|
|
'webrtc/webrtc.gyp:*',
|
|
'<(libjingle_root)/talk/libjingle.gyp:*',
|
|
'<(libjingle_root)/talk/libjingle_examples.gyp:*',
|
|
'<(libjingle_root)/talk/libjingle_tests.gyp:*',
|
|
],
|
|
'conditions': [
|
|
['OS=="android"', {
|
|
'dependencies': [
|
|
'webrtc/webrtc_examples.gyp:*',
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|