| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
| 10 | 10 |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 303 |
| 304 if (rtc_enable_protobuf) { | 304 if (rtc_enable_protobuf) { |
| 305 proto_library("rtc_event_log_proto") { | 305 proto_library("rtc_event_log_proto") { |
| 306 sources = [ | 306 sources = [ |
| 307 "call/rtc_event_log.proto", | 307 "call/rtc_event_log.proto", |
| 308 ] | 308 ] |
| 309 proto_out_dir = "webrtc/call" | 309 proto_out_dir = "webrtc/call" |
| 310 } | 310 } |
| 311 } | 311 } |
| 312 | 312 |
| 313 rtc_static_library("rtc_event_log") { | |
| 314 sources = [ | |
| 315 "call/rtc_event_log.cc", | |
| 316 "call/rtc_event_log.h", | |
| 317 "call/rtc_event_log_helper_thread.cc", | |
| 318 "call/rtc_event_log_helper_thread.h", | |
| 319 ] | |
| 320 | |
| 321 defines = [] | |
| 322 | |
| 323 deps = [ | |
| 324 ":webrtc_common", | |
| 325 "modules/rtp_rtcp", | |
| 326 ] | |
| 327 | |
| 328 if (rtc_enable_protobuf) { | |
| 329 defines += [ "ENABLE_RTC_EVENT_LOG" ] | |
| 330 deps += [ ":rtc_event_log_proto" ] | |
| 331 } | |
| 332 if (is_clang && !is_nacl) { | |
| 333 # Suppress warnings from Chrome's Clang plugins. | |
| 334 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 335 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
| 336 } | |
| 337 } | |
| 338 | |
| 339 if (rtc_enable_protobuf) { | 313 if (rtc_enable_protobuf) { |
| 340 rtc_static_library("rtc_event_log_parser") { | 314 rtc_static_library("rtc_event_log_parser") { |
| 341 sources = [ | 315 sources = [ |
| 342 "call/rtc_event_log_parser.cc", | 316 "call/rtc_event_log_parser.cc", |
| 343 "call/rtc_event_log_parser.h", | 317 "call/rtc_event_log_parser.h", |
| 344 ] | 318 ] |
| 345 | 319 |
| 346 public_deps = [ | 320 public_deps = [ |
| 347 ":rtc_event_log_proto", | 321 ":rtc_event_log_proto", |
| 348 ":webrtc_common", | 322 ":webrtc_common", |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 ] | 816 ] |
| 843 | 817 |
| 844 deps = [ | 818 deps = [ |
| 845 "//webrtc/api:libjingle_peerconnection_java", | 819 "//webrtc/api:libjingle_peerconnection_java", |
| 846 "//webrtc/api:libjingle_peerconnection_jni", | 820 "//webrtc/api:libjingle_peerconnection_jni", |
| 847 "//webrtc/examples:AppRTCDemo_javalib", | 821 "//webrtc/examples:AppRTCDemo_javalib", |
| 848 ] | 822 ] |
| 849 } | 823 } |
| 850 } | 824 } |
| 851 } | 825 } |
| OLD | NEW |