OLD | NEW |
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 Loading... |
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 if (rtc_include_tests) { | 153 if (rtc_include_tests) { |
153 rtc_executable("rtc_event_log2text") { | 154 rtc_executable("rtc_event_log2text") { |
154 testonly = true | 155 testonly = true |
155 sources = [ | 156 sources = [ |
156 "rtc_event_log/rtc_event_log2text.cc", | 157 "rtc_event_log/rtc_event_log2text.cc", |
157 ] | 158 ] |
158 deps = [ | 159 deps = [ |
159 ":rtc_event_log_api", | 160 ":rtc_event_log_api", |
160 ":rtc_event_log_impl", | 161 ":rtc_event_log_impl", |
161 ":rtc_event_log_parser", | 162 ":rtc_event_log_parser", |
| 163 "../call:video_stream_api", |
162 "../rtc_base:rtc_base_approved", | 164 "../rtc_base:rtc_base_approved", |
163 | 165 |
164 # TODO(kwiberg): Remove this dependency. | 166 # TODO(kwiberg): Remove this dependency. |
165 "../api/audio_codecs:audio_codecs_api", | 167 "../api/audio_codecs:audio_codecs_api", |
166 "../modules/rtp_rtcp:rtp_rtcp", | 168 "../modules/rtp_rtcp:rtp_rtcp", |
167 ] | 169 ] |
168 if (!build_with_chromium && is_clang) { | 170 if (!build_with_chromium && is_clang) { |
169 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
170 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
171 } | 173 } |
(...skipping 11 matching lines...) Expand all Loading... |
183 ":rtc_event_log_proto", | 185 ":rtc_event_log_proto", |
184 "../rtc_base:rtc_base_approved", | 186 "../rtc_base:rtc_base_approved", |
185 ] | 187 ] |
186 if (!build_with_chromium && is_clang) { | 188 if (!build_with_chromium && is_clang) { |
187 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 189 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
188 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 190 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
189 } | 191 } |
190 } | 192 } |
191 } | 193 } |
192 } | 194 } |
OLD | NEW |