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

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

Issue 2446643005: Use relative names in GN to make Chromium happy (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | 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 27 matching lines...) Expand all
38 "../../common_audio", 38 "../../common_audio",
39 "../../system_wrappers", 39 "../../system_wrappers",
40 ] 40 ]
41 41
42 rtc_static_library("audio_format") { 42 rtc_static_library("audio_format") {
43 sources = [ 43 sources = [
44 "codecs/audio_format.cc", 44 "codecs/audio_format.cc",
45 "codecs/audio_format.h", 45 "codecs/audio_format.h",
46 ] 46 ]
47 deps = [ 47 deps = [
48 "//webrtc:webrtc_common", 48 "../..:webrtc_common",
49 ] 49 ]
50 } 50 }
51 51
52 rtc_static_library("audio_format_conversion") { 52 rtc_static_library("audio_format_conversion") {
53 sources = [ 53 sources = [
54 "codecs/audio_format_conversion.cc", 54 "codecs/audio_format_conversion.cc",
55 "codecs/audio_format_conversion.h", 55 "codecs/audio_format_conversion.h",
56 ] 56 ]
57 deps = [ 57 deps = [
58 ":audio_format", 58 ":audio_format",
59 "//webrtc:webrtc_common", 59 "../..:webrtc_common",
60 "//webrtc/base:rtc_base_approved", 60 "../../base:rtc_base_approved",
61 ] 61 ]
62 } 62 }
63 63
64 rtc_source_set("audio_decoder_factory_interface") { 64 rtc_source_set("audio_decoder_factory_interface") {
65 sources = [ 65 sources = [
66 "codecs/audio_decoder_factory.h", 66 "codecs/audio_decoder_factory.h",
67 ] 67 ]
68 deps = [ 68 deps = [
69 ":audio_decoder_interface", 69 ":audio_decoder_interface",
70 ":audio_format", 70 ":audio_format",
71 "//webrtc/base:rtc_base_approved", 71 "../../base:rtc_base_approved",
72 ] 72 ]
73 } 73 }
74 74
75 rtc_static_library("builtin_audio_decoder_factory") { 75 rtc_static_library("builtin_audio_decoder_factory") {
76 sources = [ 76 sources = [
77 "codecs/builtin_audio_decoder_factory.cc", 77 "codecs/builtin_audio_decoder_factory.cc",
78 "codecs/builtin_audio_decoder_factory.h", 78 "codecs/builtin_audio_decoder_factory.h",
79 ] 79 ]
80 deps = [ 80 deps = [
81 "../..:webrtc_common", 81 "../..:webrtc_common",
(...skipping 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1636 "../../test:test_support_main", 1636 "../../test:test_support_main",
1637 "//testing/gtest", 1637 "//testing/gtest",
1638 ] 1638 ]
1639 1639
1640 if (!build_with_chromium && is_clang) { 1640 if (!build_with_chromium && is_clang) {
1641 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1641 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1642 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1642 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1643 } 1643 }
1644 } 1644 }
1645 } 1645 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698