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

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

Issue 2852663002: Reland of Enable GN check for webrtc/base (Closed)
Patch Set: fixing compile error Created 3 years, 7 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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after
1613 if (!build_with_chromium && is_clang) { 1613 if (!build_with_chromium && is_clang) {
1614 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1614 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1615 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1615 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1616 } 1616 }
1617 1617
1618 deps = [ 1618 deps = [
1619 ":pcm16b", 1619 ":pcm16b",
1620 "..:module_api", 1620 "..:module_api",
1621 "../..:webrtc_common", 1621 "../..:webrtc_common",
1622 "../../base:rtc_base_approved", 1622 "../../base:rtc_base_approved",
1623 "../../base:rtc_base_tests_utils",
1623 "../../common_audio", 1624 "../../common_audio",
1624 "../../test:rtp_test_utils", 1625 "../../test:rtp_test_utils",
1625 "../rtp_rtcp", 1626 "../rtp_rtcp",
1626 ] 1627 ]
1627 1628
1628 public_deps = [ 1629 public_deps = [
1629 ":neteq_tools", 1630 ":neteq_tools",
1630 ":neteq_tools_minimal", 1631 ":neteq_tools_minimal",
1631 ] 1632 ]
1632 1633
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. 2224 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead.
2224 # TODO(kwiberg): Remove this. 2225 # TODO(kwiberg): Remove this.
2225 rtc_source_set("builtin_audio_decoder_factory") { 2226 rtc_source_set("builtin_audio_decoder_factory") {
2226 sources = [ 2227 sources = [
2227 "codecs/builtin_audio_decoder_factory.h", 2228 "codecs/builtin_audio_decoder_factory.h",
2228 ] 2229 ]
2229 deps = [ 2230 deps = [
2230 "../../api/audio_codecs:builtin_audio_decoder_factory", 2231 "../../api/audio_codecs:builtin_audio_decoder_factory",
2231 ] 2232 ]
2232 } 2233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698