Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 # Below are normally provided by Chromium's base.gyp and required for
2 # libjingle.gyp.
3 {
4 'targets': [
5 {
6 'target_name': 'base',
7 'type': 'none',
8 'direct_dependent_settings': {
9 'include_dirs': [
10 '..',
11 ],
12 },
13 'conditions': [
14 ['OS == "linux"', {
15 'link_settings': {
16 'libraries': [
17 # We need rt for clock_gettime() used in libjingle.
18 '-lrt',
19 ],
20 },
21 }],
22 ],
23 },
24 ],
25 }