| 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 22 matching lines...) Expand all Loading... |
| 33 "../call:video_stream_api", | 33 "../call:video_stream_api", |
| 34 "../rtc_base:rtc_base_approved", | 34 "../rtc_base:rtc_base_approved", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 rtc_static_library("rtc_event_log_impl") { | 38 rtc_static_library("rtc_event_log_impl") { |
| 39 sources = [ | 39 sources = [ |
| 40 "rtc_event_log/rtc_event_log.cc", | 40 "rtc_event_log/rtc_event_log.cc", |
| 41 "rtc_event_log/rtc_event_log_factory.cc", | 41 "rtc_event_log/rtc_event_log_factory.cc", |
| 42 "rtc_event_log/rtc_event_log_factory.h", | 42 "rtc_event_log/rtc_event_log_factory.h", |
| 43 "rtc_event_log/rtc_event_log_helper_thread.cc", |
| 44 "rtc_event_log/rtc_event_log_helper_thread.h", |
| 43 ] | 45 ] |
| 44 | 46 |
| 45 defines = [] | 47 defines = [] |
| 46 | 48 |
| 47 deps = [ | 49 deps = [ |
| 48 ":rtc_event_log_api", | 50 ":rtc_event_log_api", |
| 49 "..:webrtc_common", | 51 "..:webrtc_common", |
| 50 "../modules/audio_coding:audio_network_adaptor", | 52 "../modules/audio_coding:audio_network_adaptor", |
| 51 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", | 53 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
| 52 "../modules/rtp_rtcp", | 54 "../modules/rtp_rtcp", |
| 53 "../rtc_base:protobuf_utils", | 55 "../rtc_base:protobuf_utils", |
| 54 "../rtc_base:rtc_base_approved", | 56 "../rtc_base:rtc_base_approved", |
| 55 "../rtc_base:rtc_task_queue", | |
| 56 "../rtc_base:sequenced_task_checker", | |
| 57 "../system_wrappers", | 57 "../system_wrappers", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 if (rtc_enable_protobuf) { | 60 if (rtc_enable_protobuf) { |
| 61 defines += [ "ENABLE_RTC_EVENT_LOG" ] | 61 defines += [ "ENABLE_RTC_EVENT_LOG" ] |
| 62 deps += [ ":rtc_event_log_proto" ] | 62 deps += [ ":rtc_event_log_proto" ] |
| 63 } | 63 } |
| 64 if (!build_with_chromium && is_clang) { | 64 if (!build_with_chromium && is_clang) { |
| 65 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 65 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 66 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 66 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 ":rtc_event_log_proto", | 185 ":rtc_event_log_proto", |
| 186 "../rtc_base:rtc_base_approved", | 186 "../rtc_base:rtc_base_approved", |
| 187 ] | 187 ] |
| 188 if (!build_with_chromium && is_clang) { | 188 if (!build_with_chromium && is_clang) { |
| 189 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 189 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 190 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 190 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 191 } | 191 } |
| 192 } | 192 } |
| 193 } | 193 } |
| 194 } | 194 } |
| OLD | NEW |