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

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2995363002: Replace gflags usages with rtc_base/flags in all targets based on test_main (Closed)
Patch Set: Improve error messages Created 3 years, 3 months 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 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 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 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 834
835 if (rtc_enable_intelligibility_enhancer) { 835 if (rtc_enable_intelligibility_enhancer) {
836 rtc_executable("intelligibility_proc") { 836 rtc_executable("intelligibility_proc") {
837 testonly = true 837 testonly = true
838 sources = [ 838 sources = [
839 "intelligibility/test/intelligibility_proc.cc", 839 "intelligibility/test/intelligibility_proc.cc",
840 ] 840 ]
841 deps = [ 841 deps = [
842 ":audio_processing", 842 ":audio_processing",
843 ":audioproc_test_utils", 843 ":audioproc_test_utils",
844 "../../rtc_base:rtc_base_approved",
844 "../../system_wrappers:metrics_default", 845 "../../system_wrappers:metrics_default",
845 "../../test:test_support", 846 "../../test:test_support",
846 "//testing/gtest", 847 "//testing/gtest",
847 "//third_party/gflags",
848 ] 848 ]
849 } 849 }
850 } 850 }
851 851
852 if (rtc_enable_protobuf) { 852 if (rtc_enable_protobuf) {
853 proto_library("audioproc_unittest_proto") { 853 proto_library("audioproc_unittest_proto") {
854 sources = [ 854 sources = [
855 "test/unittest.proto", 855 "test/unittest.proto",
856 ] 856 ]
857 proto_out_dir = "webrtc/modules/audio_processing/test" 857 proto_out_dir = "webrtc/modules/audio_processing/test"
858 } 858 }
859 859
860 rtc_static_library("audioproc_protobuf_utils") { 860 rtc_static_library("audioproc_protobuf_utils") {
861 sources = [ 861 sources = [
862 "test/protobuf_utils.cc", 862 "test/protobuf_utils.cc",
863 "test/protobuf_utils.h", 863 "test/protobuf_utils.h",
864 ] 864 ]
865 865
866 deps = [ 866 deps = [
867 ":audioproc_debug_proto", 867 ":audioproc_debug_proto",
868 "../..:webrtc_common", 868 "../..:webrtc_common",
869 "../../rtc_base:protobuf_utils", 869 "../../rtc_base:protobuf_utils",
870 "../../rtc_base:rtc_base_approved", 870 "../../rtc_base:rtc_base_approved",
871 ] 871 ]
872 } 872 }
873 } 873 }
874 } 874 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698