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

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

Issue 2528343002: H.264 packetization mode 0 (try 3) (Closed)
Patch Set: Modified initialization after discussions with magjed 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 ] 538 ]
539 } else { 539 } else {
540 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] 540 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
541 } 541 }
542 542
543 if (rtc_libvpx_build_vp9) { 543 if (rtc_libvpx_build_vp9) {
544 sources += 544 sources +=
545 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] 545 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ]
546 } 546 }
547 547
548 if (rtc_use_h264) {
549 sources += [ "video_coding/codecs/h264/h264_encoder_impl_unittest.cc" ]
550 }
551
548 if (rtc_desktop_capture_supported || is_android) { 552 if (rtc_desktop_capture_supported || is_android) {
549 deps += [ "desktop_capture" ] 553 deps += [ "desktop_capture" ]
550 sources += [ 554 sources += [
551 "desktop_capture/desktop_region_unittest.cc", 555 "desktop_capture/desktop_region_unittest.cc",
552 "desktop_capture/differ_block_unittest.cc", 556 "desktop_capture/differ_block_unittest.cc",
553 ] 557 ]
554 } 558 }
555 559
556 if (rtc_desktop_capture_supported) { 560 if (rtc_desktop_capture_supported) {
557 deps += [ "desktop_capture:desktop_capture_mock" ] 561 deps += [ "desktop_capture:desktop_capture_mock" ]
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 "../test:test_common", 753 "../test:test_common",
750 "../test:test_main", 754 "../test:test_main",
751 "remote_bitrate_estimator:bwe_simulator_lib", 755 "remote_bitrate_estimator:bwe_simulator_lib",
752 "video_capture", 756 "video_capture",
753 "//testing/gmock", 757 "//testing/gmock",
754 "//testing/gtest", 758 "//testing/gtest",
755 "//third_party/gflags", 759 "//third_party/gflags",
756 ] 760 ]
757 } 761 }
758 } 762 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698