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

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

Issue 3007433002: Let CreateVideoDecoder take a cricket::VideoCodec. (Closed)
Patch Set: Remove unrelated change Created 3 years, 4 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
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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 # https://developer.apple.com/library/mac/qa/qa1490/_index.html 530 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
531 ldflags = [ "-ObjC" ] 531 ldflags = [ "-ObjC" ]
532 532
533 defines = [ "GTEST_RELATIVE_PATH" ] 533 defines = [ "GTEST_RELATIVE_PATH" ]
534 deps = [ 534 deps = [
535 ":objc_peerconnection", 535 ":objc_peerconnection",
536 ":objc_peerconnectionfactory", 536 ":objc_peerconnectionfactory",
537 ":objc_videotoolbox", 537 ":objc_videotoolbox",
538 ":objc_videotracksource", 538 ":objc_videotracksource",
539 "..//system_wrappers:system_wrappers_default", 539 "..//system_wrappers:system_wrappers_default",
540 "../media:rtc_media_base",
540 "../modules:module_api", 541 "../modules:module_api",
541 "../rtc_base:rtc_base_tests_utils", 542 "../rtc_base:rtc_base_tests_utils",
542 "../system_wrappers:system_wrappers_default", 543 "../system_wrappers:system_wrappers_default",
543 "//third_party/ocmock", 544 "//third_party/ocmock",
544 ] 545 ]
545 546
546 if (is_ios) { 547 if (is_ios) {
547 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ] 548 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ]
548 549
549 # RTCMTLVideoView not supported on 32-bit arm 550 # RTCMTLVideoView not supported on 32-bit arm
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 public_deps = [ 746 public_deps = [
746 "$rtc_libyuv_dir", 747 "$rtc_libyuv_dir",
747 ] 748 ]
748 } else { 749 } else {
749 # Need to add a directory normally exported by libyuv. 750 # Need to add a directory normally exported by libyuv.
750 include_dirs = [ "$rtc_libyuv_dir/include" ] 751 include_dirs = [ "$rtc_libyuv_dir/include" ]
751 } 752 }
752 } 753 }
753 } 754 }
754 } 755 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698