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

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

Issue 2528343002: H.264 packetization mode 0 (try 3) (Closed)
Patch Set: Addressed hbos' comments Created 4 years 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 (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("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 ] 541 ]
542 } else { 542 } else {
543 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] 543 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
544 } 544 }
545 545
546 if (rtc_libvpx_build_vp9) { 546 if (rtc_libvpx_build_vp9) {
547 sources += 547 sources +=
548 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] 548 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ]
549 } 549 }
550 550
551 if (rtc_use_h264) {
552 sources += [ "video_coding/codecs/h264/h264_encoder_impl_unittest.cc" ]
553 }
554
551 if (rtc_desktop_capture_supported || is_android) { 555 if (rtc_desktop_capture_supported || is_android) {
552 deps += [ "desktop_capture" ] 556 deps += [ "desktop_capture" ]
553 sources += [ 557 sources += [
554 "desktop_capture/desktop_region_unittest.cc", 558 "desktop_capture/desktop_region_unittest.cc",
555 "desktop_capture/differ_block_unittest.cc", 559 "desktop_capture/differ_block_unittest.cc",
556 ] 560 ]
557 } 561 }
558 562
559 if (rtc_desktop_capture_supported) { 563 if (rtc_desktop_capture_supported) {
560 deps += [ "desktop_capture:desktop_capture_mock" ] 564 deps += [ "desktop_capture:desktop_capture_mock" ]
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 "../test:test_common", 756 "../test:test_common",
753 "../test:test_support_main", 757 "../test:test_support_main",
754 "remote_bitrate_estimator:bwe_simulator_lib", 758 "remote_bitrate_estimator:bwe_simulator_lib",
755 "video_capture", 759 "video_capture",
756 "//testing/gmock", 760 "//testing/gmock",
757 "//testing/gtest", 761 "//testing/gtest",
758 "//third_party/gflags", 762 "//third_party/gflags",
759 ] 763 ]
760 } 764 }
761 } 765 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698