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

Side by Side Diff: webrtc/logging/BUILD.gn

Issue 3004723002: Move RtpExtension to api/ directory and config.h/.cc to call/. (Closed)
Patch Set: Rebase 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 } 23 }
24 24
25 rtc_source_set("rtc_event_log_api") { 25 rtc_source_set("rtc_event_log_api") {
26 sources = [ 26 sources = [
27 "rtc_event_log/rtc_event_log.h", 27 "rtc_event_log/rtc_event_log.h",
28 "rtc_event_log/rtc_event_log_factory_interface.h", 28 "rtc_event_log/rtc_event_log_factory_interface.h",
29 ] 29 ]
30 deps = [ 30 deps = [
31 "..:webrtc_common", 31 "..:webrtc_common",
32 "../api:libjingle_peerconnection_api",
32 "../call:video_stream_api", 33 "../call:video_stream_api",
33 "../rtc_base:rtc_base_approved", 34 "../rtc_base:rtc_base_approved",
34 ] 35 ]
35 } 36 }
36 37
37 rtc_static_library("rtc_event_log_impl") { 38 rtc_static_library("rtc_event_log_impl") {
38 sources = [ 39 sources = [
39 "rtc_event_log/rtc_event_log.cc", 40 "rtc_event_log/rtc_event_log.cc",
40 "rtc_event_log/rtc_event_log_factory.cc", 41 "rtc_event_log/rtc_event_log_factory.cc",
41 "rtc_event_log/rtc_event_log_factory.h", 42 "rtc_event_log/rtc_event_log_factory.h",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 131 }
131 rtc_test("rtc_event_log2rtp_dump") { 132 rtc_test("rtc_event_log2rtp_dump") {
132 testonly = true 133 testonly = true
133 sources = [ 134 sources = [
134 "rtc_event_log/rtc_event_log2rtp_dump.cc", 135 "rtc_event_log/rtc_event_log2rtp_dump.cc",
135 ] 136 ]
136 deps = [ 137 deps = [
137 ":rtc_event_log_api", 138 ":rtc_event_log_api",
138 ":rtc_event_log_impl", 139 ":rtc_event_log_impl",
139 ":rtc_event_log_parser", 140 ":rtc_event_log_parser",
141 "../call:call",
140 "../modules/rtp_rtcp:rtp_rtcp", 142 "../modules/rtp_rtcp:rtp_rtcp",
141 "../rtc_base:rtc_base_approved", 143 "../rtc_base:rtc_base_approved",
142 "../system_wrappers:field_trial_default", 144 "../system_wrappers:field_trial_default",
143 "../system_wrappers:metrics_default", 145 "../system_wrappers:metrics_default",
144 "../test:rtp_test_utils", 146 "../test:rtp_test_utils",
145 "//third_party/gflags", 147 "//third_party/gflags",
146 ] 148 ]
147 if (!build_with_chromium && is_clang) { 149 if (!build_with_chromium && is_clang) {
148 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 150 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
149 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 151 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
150 } 152 }
151 } 153 }
152 } 154 }
153 if (rtc_include_tests) { 155 if (rtc_include_tests) {
154 rtc_executable("rtc_event_log2text") { 156 rtc_executable("rtc_event_log2text") {
155 testonly = true 157 testonly = true
156 sources = [ 158 sources = [
157 "rtc_event_log/rtc_event_log2text.cc", 159 "rtc_event_log/rtc_event_log2text.cc",
158 ] 160 ]
159 deps = [ 161 deps = [
160 ":rtc_event_log_api", 162 ":rtc_event_log_api",
161 ":rtc_event_log_impl", 163 ":rtc_event_log_impl",
162 ":rtc_event_log_parser", 164 ":rtc_event_log_parser",
165 "../call:video_stream_api",
163 "../rtc_base:rtc_base_approved", 166 "../rtc_base:rtc_base_approved",
164 167
165 # TODO(kwiberg): Remove this dependency. 168 # TODO(kwiberg): Remove this dependency.
166 "../api/audio_codecs:audio_codecs_api", 169 "../api/audio_codecs:audio_codecs_api",
167 "../modules/rtp_rtcp:rtp_rtcp", 170 "../modules/rtp_rtcp:rtp_rtcp",
168 "//third_party/gflags", 171 "//third_party/gflags",
169 ] 172 ]
170 if (!build_with_chromium && is_clang) { 173 if (!build_with_chromium && is_clang) {
171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 174 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
(...skipping 13 matching lines...) Expand all
186 "../rtc_base:rtc_base_approved", 189 "../rtc_base:rtc_base_approved",
187 "//third_party/gflags", 190 "//third_party/gflags",
188 ] 191 ]
189 if (!build_with_chromium && is_clang) { 192 if (!build_with_chromium && is_clang) {
190 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 193 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
191 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 194 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
192 } 195 }
193 } 196 }
194 } 197 }
195 } 198 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698