media/webrtc/trunk/base/base.gyp

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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 }

mercurial