From 88a310886ebed3f7b05d42dfc0f700d91853ce03 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Sat, 19 Oct 2013 18:10:04 +0000 Subject: [PATCH] Add audio_e2e_test target to tools.gyp The moving this GYP target out of webrtc.gyp in https://code.google.com/p/webrtc/source/detail?r=4949 this should have been added into tools.gyp. TEST=trybots passing BUG=none TBR=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2539004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5002 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/tools/e2e_quality/e2e_quality.gyp | 26 ------------------------ webrtc/tools/tools.gyp | 13 ++++++++++++ 2 files changed, 13 insertions(+), 26 deletions(-) delete mode 100644 webrtc/tools/e2e_quality/e2e_quality.gyp diff --git a/webrtc/tools/e2e_quality/e2e_quality.gyp b/webrtc/tools/e2e_quality/e2e_quality.gyp deleted file mode 100644 index 6ddc3a8ce7..0000000000 --- a/webrtc/tools/e2e_quality/e2e_quality.gyp +++ /dev/null @@ -1,26 +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. - -{ - 'includes': ['../../build/common.gypi'], - 'targets': [ - { - 'target_name': 'audio_e2e_harness', - 'type': 'executable', - 'dependencies': [ - '<(webrtc_root)/test/test.gyp:channel_transport', - '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', - '<(DEPTH)/testing/gtest.gyp:gtest', - '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', - ], - 'sources': [ - 'audio/audio_e2e_harness.cc', - ], - }, - ], -} diff --git a/webrtc/tools/tools.gyp b/webrtc/tools/tools.gyp index fa790469da..905c323aa1 100644 --- a/webrtc/tools/tools.gyp +++ b/webrtc/tools/tools.gyp @@ -11,6 +11,19 @@ '../build/common.gypi', ], 'targets': [ + { + 'target_name': 'audio_e2e_harness', + 'type': 'executable', + 'dependencies': [ + '<(webrtc_root)/test/test.gyp:channel_transport', + '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', + '<(DEPTH)/testing/gtest.gyp:gtest', + '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', + ], + 'sources': [ + 'e2e_quality/audio/audio_e2e_harness.cc', + ], + }, # audio_e2e_harness { 'target_name': 'video_quality_analysis', 'type': 'static_library',