Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: webrtc/sdk/BUILD.gn

Issue 2961663002: Trace loggging: Check for g_event_logger is not null before calling it. (Closed)
Patch Set: Revert change. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/rtc_base/event_tracer.cc ('k') | webrtc/sdk/objc/Framework/UnitTests/RTCTracingTest.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright 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 if (is_ios) { 10 if (is_ios) {
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 visibility = [ "..:rtc_unittests" ] 503 visibility = [ "..:rtc_unittests" ]
504 } 504 }
505 sources = [ 505 sources = [
506 "objc/Framework/UnitTests/RTCConfigurationTest.mm", 506 "objc/Framework/UnitTests/RTCConfigurationTest.mm",
507 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", 507 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm",
508 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", 508 "objc/Framework/UnitTests/RTCIceCandidateTest.mm",
509 "objc/Framework/UnitTests/RTCIceServerTest.mm", 509 "objc/Framework/UnitTests/RTCIceServerTest.mm",
510 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", 510 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm",
511 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", 511 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm",
512 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", 512 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm",
513 "objc/Framework/UnitTests/RTCTracingTest.mm",
513 "objc/Framework/UnitTests/avformatmappertests.mm", 514 "objc/Framework/UnitTests/avformatmappertests.mm",
514 ] 515 ]
515 if (is_ios && 516 if (is_ios &&
516 !(use_ios_simulator && 517 !(use_ios_simulator &&
517 # The tests crash on these simulator versions: 518 # The tests crash on these simulator versions:
518 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { 519 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) {
519 sources += 520 sources +=
520 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] 521 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ]
521 } 522 }
522 523
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 public_deps = [ 733 public_deps = [
733 "$rtc_libyuv_dir", 734 "$rtc_libyuv_dir",
734 ] 735 ]
735 } else { 736 } else {
736 # Need to add a directory normally exported by libyuv. 737 # Need to add a directory normally exported by libyuv.
737 include_dirs = [ "$rtc_libyuv_dir/include" ] 738 include_dirs = [ "$rtc_libyuv_dir/include" ]
738 } 739 }
739 } 740 }
740 } 741 }
741 } 742 }
OLDNEW
« no previous file with comments | « webrtc/rtc_base/event_tracer.cc ('k') | webrtc/sdk/objc/Framework/UnitTests/RTCTracingTest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698