| 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 13 matching lines...) Expand all Loading... |
| 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 "rtc_event_log/rtc_stream_config.cc", | 29 "rtc_event_log/rtc_stream_config.cc", |
| 30 "rtc_event_log/rtc_stream_config.h", | 30 "rtc_event_log/rtc_stream_config.h", |
| 31 ] | 31 ] |
| 32 deps = [ | 32 deps = [ |
| 33 "..:webrtc_common", | 33 "..:webrtc_common", |
| 34 "../api:array_view", |
| 34 "../api:libjingle_peerconnection_api", | 35 "../api:libjingle_peerconnection_api", |
| 35 "../call:video_stream_api", | 36 "../call:video_stream_api", |
| 36 "../rtc_base:rtc_base_approved", | 37 "../rtc_base:rtc_base_approved", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| 39 | 40 |
| 40 rtc_static_library("rtc_event_log_impl") { | 41 rtc_static_library("rtc_event_log_impl") { |
| 41 sources = [ | 42 sources = [ |
| 42 "rtc_event_log/rtc_event_log.cc", | 43 "rtc_event_log/rtc_event_log.cc", |
| 43 "rtc_event_log/rtc_event_log_factory.cc", | 44 "rtc_event_log/rtc_event_log_factory.cc", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 ":rtc_event_log_proto", | 188 ":rtc_event_log_proto", |
| 188 "../rtc_base:rtc_base_approved", | 189 "../rtc_base:rtc_base_approved", |
| 189 ] | 190 ] |
| 190 if (!build_with_chromium && is_clang) { | 191 if (!build_with_chromium && is_clang) { |
| 191 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 192 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 192 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 193 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 193 } | 194 } |
| 194 } | 195 } |
| 195 } | 196 } |
| 196 } | 197 } |
| OLD | NEW |