From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../gyp/test/library/src/shared_dependency.gyp | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 media/webrtc/trunk/tools/gyp/test/library/src/shared_dependency.gyp (limited to 'media/webrtc/trunk/tools/gyp/test/library/src/shared_dependency.gyp') diff --git a/media/webrtc/trunk/tools/gyp/test/library/src/shared_dependency.gyp b/media/webrtc/trunk/tools/gyp/test/library/src/shared_dependency.gyp new file mode 100644 index 000000000..7d29f5de5 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/library/src/shared_dependency.gyp @@ -0,0 +1,33 @@ +# Copyright (c) 2009 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'lib1', + 'type': 'shared_library', + 'sources': [ + 'lib1.c', + ], + }, + { + 'target_name': 'lib2', + 'type': 'shared_library', + 'sources': [ + 'lib2.c', + ], + 'dependencies': [ + 'lib1', + ], + }, + ], + 'conditions': [ + ['OS=="linux"', { + 'target_defaults': { + # Support 64-bit shared libs (also works fine for 32-bit). + 'cflags': ['-fPIC'], + }, + }], + ], +} -- cgit v1.2.3