Home | History | Annotate | Download | only in vad
      1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
      2 #
      3 # Use of this source code is governed by a BSD-style license
      4 # that can be found in the LICENSE file in the root of the source
      5 # tree. An additional intellectual property rights grant can be found
      6 # in the file PATENTS.  All contributing project authors may
      7 # be found in the AUTHORS file in the root of the source tree.
      8 
      9 {
     10   'targets': [
     11     {
     12       'target_name': 'vad',
     13       'type': '<(library)',
     14       'dependencies': [
     15         'signal_processing',
     16       ],
     17       'include_dirs': [
     18         'include',
     19       ],
     20       'direct_dependent_settings': {
     21         'include_dirs': [
     22           'include',
     23         ],
     24       },
     25       'sources': [
     26         'include/webrtc_vad.h',
     27         'webrtc_vad.c',
     28         'vad_core.c',
     29         'vad_core.h',
     30         'vad_defines.h',
     31         'vad_filterbank.c',
     32         'vad_filterbank.h',
     33         'vad_gmm.c',
     34         'vad_gmm.h',
     35         'vad_sp.c',
     36         'vad_sp.h',
     37       ],
     38     },
     39   ], # targets
     40    'conditions': [
     41     ['build_with_chromium==0', {
     42       'targets' : [
     43         {
     44           'target_name': 'vad_unittests',
     45           'type': 'executable',
     46           'dependencies': [
     47             'vad',
     48             '<(webrtc_root)/../test/test.gyp:test_support_main',
     49             '<(webrtc_root)/../testing/gtest.gyp:gtest',
     50           ],
     51           'sources': [
     52             'vad_unittest.cc',
     53           ],
     54         }, # vad_unittests
     55       ], # targets
     56     }], # build_with_chromium
     57   ], # conditions
     58 }
     59 
     60 # Local Variables:
     61 # tab-width:2
     62 # indent-tabs-mode:nil
     63 # End:
     64 # vim: set expandtab tabstop=2 shiftwidth=2:
     65