-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
26 lines (24 loc) · 819 Bytes
/
binding.gyp
File metadata and controls
26 lines (24 loc) · 819 Bytes
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
{
# "includes": ["deps/webrtc/webrtc.gyp"],
'includes': [ 'deps/webrtc/third_party/webrtc/build/common.gypi', ],
"targets": [
{
"target_name": "webrtc",
"sources": [
"src/bindings.cc",
"src/peer_connection_client.cc",
"src/node_peer_connection_client.cc",
"deps/webrtc/third_party/libjingle/source/talk/examples/peerconnection/client/defaults.cc"
],
"dependencies": [
'deps/webrtc/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
'deps/webrtc/third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
],
"include_dirs": [
"deps/webrtc/third_party/libjingle/source/talk/examples/peerconnection/client",
"deps/webrtc/third_party/webrtc",
"deps/webrtc/third_party/libjingle/source"
]
}
]
}