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

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

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 cflags = [ 110 cflags = [
111 # TODO(kjellander): Bug 261: fix this warning. 111 # TODO(kjellander): Bug 261: fix this warning.
112 "/wd4373", # virtual function override. 112 "/wd4373", # virtual function override.
113 ] 113 ]
114 } 114 }
115 115
116 deps = audio_coding_deps + [ 116 deps = audio_coding_deps + [
117 ":audio_network_adaptor", 117 ":audio_network_adaptor",
118 ":neteq", 118 ":neteq",
119 ":rent_a_codec", 119 ":rent_a_codec",
120 "../../call:rtc_event_log", 120 "../../logging:rtc_event_log_api",
121 ] 121 ]
122 defines = audio_coding_defines 122 defines = audio_coding_defines
123 } 123 }
124 124
125 rtc_static_library("audio_decoder_interface") { 125 rtc_static_library("audio_decoder_interface") {
126 sources = [ 126 sources = [
127 "codecs/audio_decoder.cc", 127 "codecs/audio_decoder.cc",
128 "codecs/audio_decoder.h", 128 "codecs/audio_decoder.h",
129 "codecs/legacy_encoded_audio_frame.cc", 129 "codecs/legacy_encoded_audio_frame.cc",
130 "codecs/legacy_encoded_audio_frame.h", 130 "codecs/legacy_encoded_audio_frame.h",
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 "neteq/tools/rtc_event_log_source.h", 1014 "neteq/tools/rtc_event_log_source.h",
1015 ] 1015 ]
1016 1016
1017 if (is_clang) { 1017 if (is_clang) {
1018 # Suppress warnings from the Chromium Clang plugins 1018 # Suppress warnings from the Chromium Clang plugins
1019 # (bugs.webrtc.org/163). 1019 # (bugs.webrtc.org/163).
1020 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1020 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1021 } 1021 }
1022 1022
1023 deps = [ 1023 deps = [
1024 "../../:rtc_event_log_parser", 1024 "../../logging:rtc_event_log_parser",
1025 ] 1025 ]
1026 public_deps = [ 1026 public_deps = [
1027 "../../:rtc_event_log_proto", 1027 "../../logging:rtc_event_log_proto",
1028 ] 1028 ]
1029 } 1029 }
1030 1030
1031 rtc_test("neteq_rtpplay") { 1031 rtc_test("neteq_rtpplay") {
1032 testonly = true 1032 testonly = true
1033 defines = [] 1033 defines = []
1034 deps = [] 1034 deps = []
1035 sources = [ 1035 sources = [
1036 "neteq/tools/neteq_rtpplay.cc", 1036 "neteq/tools/neteq_rtpplay.cc",
1037 ] 1037 ]
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 "//testing/gtest", 1597 "//testing/gtest",
1598 ] 1598 ]
1599 1599
1600 if (is_clang) { 1600 if (is_clang) {
1601 # Suppress warnings from Chrome's Clang plugins. 1601 # Suppress warnings from Chrome's Clang plugins.
1602 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1602 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1604 } 1604 }
1605 } 1605 }
1606 } 1606 }
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log_unittest_helper.cc ('k') | webrtc/modules/audio_coding/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698