bjornv@webrtc.org | 7056908 | 2012-04-12 12:13:50 +0000 | [diff] [blame] | 1 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 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 | { |
andrew@webrtc.org | 7bf2646 | 2011-12-03 00:03:31 +0000 | [diff] [blame] | 10 | 'conditions': [ |
| 11 | ['enable_protobuf==1', { |
| 12 | 'targets': [ |
| 13 | { |
andrew@webrtc.org | dd5d804 | 2014-03-13 00:57:52 +0000 | [diff] [blame] | 14 | 'target_name': 'audioproc_unittest_proto', |
| 15 | 'type': 'static_library', |
| 16 | 'sources': [ 'test/unittest.proto', ], |
| 17 | 'variables': { |
| 18 | 'proto_in_dir': 'test', |
| 19 | # Workaround to protect against gyp's pathname relativization when |
| 20 | # this file is included by modules.gyp. |
| 21 | 'proto_out_protected': 'webrtc/audio_processing', |
| 22 | 'proto_out_dir': '<(proto_out_protected)', |
| 23 | }, |
| 24 | 'includes': [ '../../build/protoc.gypi', ], |
| 25 | }, |
| 26 | { |
andrew@webrtc.org | 7bf2646 | 2011-12-03 00:03:31 +0000 | [diff] [blame] | 27 | 'target_name': 'audioproc', |
| 28 | 'type': 'executable', |
| 29 | 'dependencies': [ |
| 30 | 'audio_processing', |
andrew@webrtc.org | ae7017d | 2011-12-03 01:43:29 +0000 | [diff] [blame] | 31 | 'audioproc_debug_proto', |
andrew@webrtc.org | b43502e | 2012-11-26 23:57:38 +0000 | [diff] [blame] | 32 | '<(DEPTH)/testing/gtest.gyp:gtest', |
kma@webrtc.org | 0e73950 | 2012-12-07 15:26:28 +0000 | [diff] [blame] | 33 | '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', |
| 34 | '<(webrtc_root)/test/test.gyp:test_support', |
andrew@webrtc.org | 7bf2646 | 2011-12-03 00:03:31 +0000 | [diff] [blame] | 35 | ], |
| 36 | 'sources': [ 'test/process_test.cc', ], |
| 37 | }, |
| 38 | { |
| 39 | 'target_name': 'unpack_aecdump', |
| 40 | 'type': 'executable', |
| 41 | 'dependencies': [ |
| 42 | 'audioproc_debug_proto', |
| 43 | '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', |
aluebs@webrtc.org | 841f58f | 2014-09-02 07:51:51 +0000 | [diff] [blame] | 44 | '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
fischman@webrtc.org | dde7d4c | 2013-08-15 23:31:30 +0000 | [diff] [blame] | 45 | '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
andrew@webrtc.org | 7bf2646 | 2011-12-03 00:03:31 +0000 | [diff] [blame] | 46 | ], |
| 47 | 'sources': [ 'test/unpack.cc', ], |
| 48 | }, |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 49 | ], |
andrew@webrtc.org | 7bf2646 | 2011-12-03 00:03:31 +0000 | [diff] [blame] | 50 | }], |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 51 | ], |
| 52 | } |