summaryrefslogtreecommitdiff
path: root/webrtc
diff options
context:
space:
mode:
authorArun Raghavan <git@arunraghavan.net>2015-10-14 08:01:24 +0530
committerArun Raghavan <git@arunraghavan.net>2015-10-15 16:18:47 +0530
commit926b543a2ff3f57cf60bfdf6dff1ed4efde2ee03 (patch)
treec6216099113c1c85bf20fc1b8e3dcbab7eb7ee1e /webrtc
parent7fcd4d2df5e2ceebf830d6fdfc6e8222a2486e99 (diff)
build: Drop old gpyi file
Diffstat (limited to 'webrtc')
-rw-r--r--webrtc/modules/audio_processing/apm_tests.gypi100
1 files changed, 0 insertions, 100 deletions
diff --git a/webrtc/modules/audio_processing/apm_tests.gypi b/webrtc/modules/audio_processing/apm_tests.gypi
deleted file mode 100644
index d86ebd5..0000000
--- a/webrtc/modules/audio_processing/apm_tests.gypi
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
-#
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file in the root of the source
-# tree. An additional intellectual property rights grant can be found
-# in the file PATENTS. All contributing project authors may
-# be found in the AUTHORS file in the root of the source tree.
-
-{
- 'variables': {
- 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out',
- 'protoc_out_relpath': 'webrtc/audio_processing',
- },
- 'targets': [
- {
- 'target_name': 'audioproc_unittest',
- 'type': 'executable',
- 'conditions': [
- ['prefer_fixed_point==1', {
- 'defines': ['WEBRTC_APM_UNIT_TEST_FIXED_PROFILE'],
- }, {
- 'defines': ['WEBRTC_APM_UNIT_TEST_FLOAT_PROFILE'],
- }],
- ],
- 'dependencies': [
- 'audioproc_unittest_proto',
- 'audio_processing',
- '<(webrtc_root)/common_audio/common_audio.gyp:spl',
- '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
- '<(webrtc_root)/../test/test.gyp:test_support',
- '<(webrtc_root)/../testing/gtest.gyp:gtest',
- '<(webrtc_root)/../third_party/protobuf/protobuf.gyp:protobuf_lite',
- ],
- 'include_dirs': [
- '<(webrtc_root)/../testing/gtest/include',
- '<(protoc_out_dir)',
- ],
- 'sources': [
- 'test/unit_test.cc',
- '<(protoc_out_dir)/<(protoc_out_relpath)/unittest.pb.cc',
- '<(protoc_out_dir)/<(protoc_out_relpath)/unittest.pb.h',
- ],
- },
- {
- # Protobuf compiler / generate rule for audioproc_unittest
- 'target_name': 'audioproc_unittest_proto',
- 'type': 'none',
- 'variables': {
- 'proto_relpath':
- '<(webrtc_root)/modules/audio_processing/test',
- },
- 'sources': [
- '<(proto_relpath)/unittest.proto',
- ],
- 'rules': [
- {
- 'rule_name': 'genproto',
- 'extension': 'proto',
- 'inputs': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
- ],
- 'outputs': [
- '<(protoc_out_dir)/<(protoc_out_relpath)/<(RULE_INPUT_ROOT).pb.cc',
- '<(protoc_out_dir)/<(RULE_INPUT_ROOT).pb.h',
- ],
- 'action': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
- '--proto_path=<(proto_relpath)',
- '<(proto_relpath)/<(RULE_INPUT_NAME)',
- '--cpp_out=<(protoc_out_dir)/<(protoc_out_relpath)',
- ],
- 'message': 'Generating C++ code from <(RULE_INPUT_PATH)',
- },
- ],
- 'dependencies': [
- '<(webrtc_root)/../third_party/protobuf/protobuf.gyp:protoc#host',
- ],
- # This target exports a hard dependency because it generates header
- # files.
- 'hard_dependency': 1,
- },
- {
- 'target_name': 'audioproc_process_test',
- 'type': 'executable',
- 'dependencies': [
- 'audio_processing',
- '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
- '<(webrtc_root)/../testing/gtest.gyp:gtest',
- '<(webrtc_root)/../third_party/protobuf/protobuf.gyp:protobuf_lite',
- ],
- 'include_dirs': [
- '<(webrtc_root)/../testing/gtest/include',
- '<(protoc_out_dir)',
- ],
- 'sources': [
- 'test/process_test.cc',
- ],
- },
- ],
-}