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

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

Issue 2290593002: Fix Chromium clang plugin warnings (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/acm2/acm_receive_test_oldapi.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 source_set("acm_receive_test") { 889 source_set("acm_receive_test") {
890 testonly = true 890 testonly = true
891 sources = [ 891 sources = [
892 "acm2/acm_receive_test_oldapi.cc", 892 "acm2/acm_receive_test_oldapi.cc",
893 "acm2/acm_receive_test_oldapi.h", 893 "acm2/acm_receive_test_oldapi.h",
894 ] 894 ]
895 895
896 configs += [ "../..:common_config" ] 896 configs += [ "../..:common_config" ]
897 public_configs = [ "../..:common_inherited_config" ] 897 public_configs = [ "../..:common_inherited_config" ]
898 898
899 if (is_clang) {
900 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163).
901 configs -= [ "//build/config/clang:find_bad_constructs" ]
902 }
903
904 defines = audio_coding_defines 899 defines = audio_coding_defines
905 900
906 deps = audio_coding_deps + [ 901 deps = audio_coding_deps + [
907 ":audio_coding", 902 ":audio_coding",
908 ":neteq_unittest_tools", 903 ":neteq_unittest_tools",
909 "//testing/gtest", 904 "//testing/gtest",
910 ] 905 ]
911 } 906 }
912 907
913 source_set("acm_send_test") { 908 source_set("acm_send_test") {
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 "neteq/tools/neteq_packet_source_input.cc", 1195 "neteq/tools/neteq_packet_source_input.cc",
1201 "neteq/tools/neteq_packet_source_input.h", 1196 "neteq/tools/neteq_packet_source_input.h",
1202 "neteq/tools/neteq_replacement_input.cc", 1197 "neteq/tools/neteq_replacement_input.cc",
1203 "neteq/tools/neteq_replacement_input.h", 1198 "neteq/tools/neteq_replacement_input.h",
1204 "neteq/tools/neteq_test.cc", 1199 "neteq/tools/neteq_test.cc",
1205 "neteq/tools/neteq_test.h", 1200 "neteq/tools/neteq_test.h",
1206 "neteq/tools/output_audio_file.h", 1201 "neteq/tools/output_audio_file.h",
1207 "neteq/tools/output_wav_file.h", 1202 "neteq/tools/output_wav_file.h",
1208 "neteq/tools/packet.cc", 1203 "neteq/tools/packet.cc",
1209 "neteq/tools/packet.h", 1204 "neteq/tools/packet.h",
1205 "neteq/tools/packet_source.cc",
1210 "neteq/tools/packet_source.h", 1206 "neteq/tools/packet_source.h",
1211 "neteq/tools/resample_input_audio_file.cc", 1207 "neteq/tools/resample_input_audio_file.cc",
1212 "neteq/tools/resample_input_audio_file.h", 1208 "neteq/tools/resample_input_audio_file.h",
1213 "neteq/tools/rtp_file_source.cc", 1209 "neteq/tools/rtp_file_source.cc",
1214 "neteq/tools/rtp_file_source.h", 1210 "neteq/tools/rtp_file_source.h",
1215 "neteq/tools/rtp_generator.cc", 1211 "neteq/tools/rtp_generator.cc",
1216 "neteq/tools/rtp_generator.h", 1212 "neteq/tools/rtp_generator.h",
1217 ] 1213 ]
1218 1214
1219 configs += [ "../..:common_config" ] 1215 configs += [ "../..:common_config" ]
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 "//testing/gtest", 1611 "//testing/gtest",
1616 ] 1612 ]
1617 1613
1618 if (is_clang) { 1614 if (is_clang) {
1619 # Suppress warnings from Chrome's Clang plugins. 1615 # Suppress warnings from Chrome's Clang plugins.
1620 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1616 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1621 configs -= [ "//build/config/clang:find_bad_constructs" ] 1617 configs -= [ "//build/config/clang:find_bad_constructs" ]
1622 } 1618 }
1623 } 1619 }
1624 } 1620 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/acm2/acm_receive_test_oldapi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698