| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "rtc_event_log/rtc_event_log.cc", | 25 "rtc_event_log/rtc_event_log.cc", |
| 26 "rtc_event_log/rtc_event_log_helper_thread.cc", | 26 "rtc_event_log/rtc_event_log_helper_thread.cc", |
| 27 "rtc_event_log/rtc_event_log_helper_thread.h", | 27 "rtc_event_log/rtc_event_log_helper_thread.h", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 defines = [] | 30 defines = [] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":rtc_event_log_api", | 33 ":rtc_event_log_api", |
| 34 "..:webrtc_common", | 34 "..:webrtc_common", |
| 35 "../api:call_api", | |
| 36 "../modules/rtp_rtcp", | 35 "../modules/rtp_rtcp", |
| 37 ] | 36 ] |
| 38 | 37 |
| 39 if (rtc_enable_protobuf) { | 38 if (rtc_enable_protobuf) { |
| 40 defines += [ "ENABLE_RTC_EVENT_LOG" ] | 39 defines += [ "ENABLE_RTC_EVENT_LOG" ] |
| 41 deps += [ ":rtc_event_log_proto" ] | 40 deps += [ ":rtc_event_log_proto" ] |
| 42 } | 41 } |
| 43 if (!build_with_chromium && is_clang) { | 42 if (!build_with_chromium && is_clang) { |
| 44 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 43 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 45 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 44 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ":rtc_event_log_proto", | 88 ":rtc_event_log_proto", |
| 90 "..:webrtc_common", | 89 "..:webrtc_common", |
| 91 ] | 90 ] |
| 92 | 91 |
| 93 if (!build_with_chromium && is_clang) { | 92 if (!build_with_chromium && is_clang) { |
| 94 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 93 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 95 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 94 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 96 } | 95 } |
| 97 } | 96 } |
| 98 } | 97 } |
| OLD | NEW |