1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'use_system_libmtp%': 0,
},
'conditions': [
['use_system_libmtp==0', {
'targets': [
{
'target_name': 'libmtp',
'type': 'shared_library',
'product_name': 'mtp',
'dependencies': [
'../../third_party/libusb/libusb.gyp:libusb',
],
'sources': [
'src/libmtp.c',
'src/libusb1-glue.c',
'src/ptp.c',
'src/unicode.c',
'src/util.c',
],
'cflags!': ['-fvisibility=hidden'],
'include_dirs': [
'.',
'src',
],
'direct_dependent_settings': {
'include_dirs': [
'src',
],
},
},
],
}, { # use_system_libmtp==1
'conditions': [
['sysroot!=""', {
'variables': {
'pkg-config': '../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
},
}, {
'variables': {
'pkg-config': 'pkg-config'
},
}],
],
'targets': [
{
'target_name': 'libmtp',
'type': 'none',
'direct_dependent_settings': {
'cflags': [
'<!@(<(pkg-config) --cflags libmtp)',
],
},
'link_settings': {
'ldflags': [
'<!@(<(pkg-config) --libs-only-L --libs-only-other libmtp)',
],
'libraries': [
'<!@(<(pkg-config) --libs-only-l libmtp)',
],
},
}
],
}],
]
}
|