mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-01 09:46:09 +03:00
34 lines
655 B
Python
34 lines
655 B
Python
# 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'],
|
|
},
|
|
}],
|
|
],
|
|
}
|