Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Unified Diff: webrtc/modules/audio_processing/audio_processing_tests.gypi

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing.gypi ('k') | webrtc/modules/bitrate_controller/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/audio_processing_tests.gypi
diff --git a/webrtc/modules/audio_processing/audio_processing_tests.gypi b/webrtc/modules/audio_processing/audio_processing_tests.gypi
deleted file mode 100644
index cc62388a75d985e077b1c225ba14faba53fa16b9..0000000000000000000000000000000000000000
--- a/webrtc/modules/audio_processing/audio_processing_tests.gypi
+++ /dev/null
@@ -1,151 +0,0 @@
-# Copyright (c) 2012 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.
-
-{
- 'targets': [
- {
- 'target_name': 'audioproc_test_utils',
- 'type': 'static_library',
- 'dependencies': [
- '<(webrtc_root)/base/base.gyp:rtc_base_approved',
- '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
- ],
- 'sources': [
- 'test/audio_buffer_tools.cc',
- 'test/audio_buffer_tools.h',
- 'test/test_utils.cc',
- 'test/test_utils.h',
- ],
- },
- {
- 'target_name': 'transient_suppression_test',
- 'type': 'executable',
- 'dependencies': [
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(webrtc_root)/test/test.gyp:test_support',
- '<(webrtc_root)/modules/modules.gyp:audio_processing',
- ],
- 'sources': [
- 'transient/transient_suppression_test.cc',
- 'transient/file_utils.cc',
- 'transient/file_utils.h',
- ],
- }, # transient_suppression_test
- {
- 'target_name': 'click_annotate',
- 'type': 'executable',
- 'dependencies': [
- '<(webrtc_root)/modules/modules.gyp:audio_processing',
- ],
- 'sources': [
- 'transient/click_annotate.cc',
- 'transient/file_utils.cc',
- 'transient/file_utils.h',
- ],
- }, # click_annotate
- {
- 'target_name': 'nonlinear_beamformer_test',
- 'type': 'executable',
- 'dependencies': [
- 'audioproc_test_utils',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(webrtc_root)/modules/modules.gyp:audio_processing',
- ],
- 'sources': [
- 'beamformer/nonlinear_beamformer_test.cc',
- ],
- }, # nonlinear_beamformer_test
- ],
- 'conditions': [
- ['enable_intelligibility_enhancer==1', {
- 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
- 'targets': [
- {
- 'target_name': 'intelligibility_proc',
- 'type': 'executable',
- 'dependencies': [
- 'audioproc_test_utils',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(webrtc_root)/modules/modules.gyp:audio_processing',
- '<(webrtc_root)/test/test.gyp:test_support',
- ],
- 'sources': [
- 'intelligibility/test/intelligibility_proc.cc',
- ],
- },
- ],
- }, {
- 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
- }],
- ['enable_protobuf==1', {
- 'targets': [
- {
- 'target_name': 'audioproc_unittest_proto',
- 'type': 'static_library',
- 'sources': [ 'test/unittest.proto', ],
- 'variables': {
- 'proto_in_dir': 'test',
- # Workaround to protect against gyp's pathname relativization when
- # this file is included by modules.gyp.
- 'proto_out_protected': 'webrtc/modules/audio_processing',
- 'proto_out_dir': '<(proto_out_protected)',
- },
- 'includes': [ '../../build/protoc.gypi', ],
- },
- {
- 'target_name': 'audioproc_protobuf_utils',
- 'type': 'static_library',
- 'dependencies': [
- 'audioproc_debug_proto',
- ],
- 'sources': [
- 'test/protobuf_utils.cc',
- 'test/protobuf_utils.h',
- ],
- },
- {
- 'target_name': 'audioproc_f',
- 'type': 'executable',
- 'dependencies': [
- 'audio_processing',
- 'audioproc_debug_proto',
- 'audioproc_test_utils',
- 'audioproc_protobuf_utils',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
- '<(webrtc_root)/test/test.gyp:test_support',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- ],
- 'sources': [
- 'test/audio_processing_simulator.cc',
- 'test/audio_processing_simulator.h',
- 'test/aec_dump_based_simulator.cc',
- 'test/aec_dump_based_simulator.h',
- 'test/wav_based_simulator.cc',
- 'test/wav_based_simulator.h',
- 'test/audioproc_float.cc',
- ],
- },
- {
- 'target_name': 'unpack_aecdump',
- 'type': 'executable',
- 'dependencies': [
- 'audioproc_debug_proto',
- 'audioproc_test_utils',
- 'audioproc_protobuf_utils',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
- '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- ],
- 'sources': [ 'test/unpack.cc', ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing.gypi ('k') | webrtc/modules/bitrate_controller/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698