blob: 68b102b0613a4a7c56686e1a32a4d425d5177919 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +00001# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
mbonadei9aa3f0a2017-01-24 06:58:22 -08009import("../webrtc.gni")
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000010
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000011config("common_video_config") {
Mirko Bonadei0250be52017-12-01 13:53:04 +010012 include_dirs = [ "include" ]
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000013}
14
kjellanderb62dbbe2016-09-23 00:38:52 -070015rtc_static_library("common_video") {
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000016 sources = [
emircan55a401e2016-04-26 12:55:07 -070017 "bitrate_adjuster.cc",
kthelgasonb9061722016-10-26 02:48:16 -070018 "h264/h264_bitstream_parser.cc",
19 "h264/h264_bitstream_parser.h",
sprang52033d62016-06-02 02:43:32 -070020 "h264/h264_common.cc",
21 "h264/h264_common.h",
22 "h264/pps_parser.cc",
23 "h264/pps_parser.h",
magjedfffc1e52016-10-31 05:55:57 -070024 "h264/profile_level_id.h",
sprang52033d62016-06-02 02:43:32 -070025 "h264/sps_parser.cc",
26 "h264/sps_parser.h",
27 "h264/sps_vui_rewriter.cc",
28 "h264/sps_vui_rewriter.h",
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000029 "i420_buffer_pool.cc",
emircan55a401e2016-04-26 12:55:07 -070030 "include/bitrate_adjuster.h",
pbosa96b60b2016-04-18 21:12:48 -070031 "include/frame_callback.h",
kjellander6f8ce062015-11-16 13:52:24 -080032 "include/i420_buffer_pool.h",
33 "include/incoming_video_stream.h",
Erik Språng08127a92016-11-16 16:41:30 +010034 "include/video_bitrate_allocator.h",
nisseea3a7982017-05-15 02:42:11 -070035 "include/video_frame.h",
kjellander6f8ce062015-11-16 13:52:24 -080036 "include/video_frame_buffer.h",
Peter Boström9a638662015-05-13 13:28:11 +020037 "incoming_video_stream.cc",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000038 "libyuv/include/webrtc_libyuv.h",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000039 "libyuv/webrtc_libyuv.cc",
Miguel Casas-Sanchez47650702015-05-29 17:21:40 -070040 "video_frame.cc",
magjed@webrtc.org2386d6d2015-03-05 14:03:08 +000041 "video_frame_buffer.cc",
Peter Boström9a638662015-05-13 13:28:11 +020042 "video_render_frames.cc",
43 "video_render_frames.h",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000044 ]
45
46 include_dirs = [ "../modules/interface" ]
47
ehmaldonadoe9cc6862016-09-05 06:10:18 -070048 public_configs = [ ":common_video_config" ]
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000049
kjellandere40a7ee2016-10-16 23:56:12 -070050 if (!build_with_chromium && is_clang) {
51 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070052 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000053 }
54
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000055 deps = [
56 "..:webrtc_common",
Patrik Höglundbe214a22018-01-04 12:14:35 +010057 "../:typedefs",
58 "../api:libjingle_peerconnection_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070059 "../api:optional",
Mirko Bonadei0594a7c2017-12-18 11:42:48 +010060 "../api:video_frame_api",
Patrik Höglundb5b5bce2017-11-13 10:19:58 +010061 "../api:video_frame_api_i420",
zhihuang130ca7e2017-06-21 01:02:59 -070062 "../media:rtc_h264_profile_id",
mbonadei1140f972017-04-26 03:38:35 -070063 "../modules:module_api",
Patrik Höglundbe214a22018-01-04 12:14:35 +010064 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -070065 "../rtc_base:rtc_base",
66 "../rtc_base:rtc_task_queue",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000067 "../system_wrappers",
Patrik Höglundbe214a22018-01-04 12:14:35 +010068 "//third_party/libyuv",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000069 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000070}
kjellander2a3892a2016-06-08 01:27:52 -070071
72if (rtc_include_tests) {
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020073 common_video_resources = [ "../resources/foreman_cif.yuv" ]
kjellander32c4a202016-08-30 02:53:49 -070074
75 if (is_ios) {
76 bundle_data("common_video_unittests_bundle_data") {
77 testonly = true
78 sources = common_video_resources
79 outputs = [
80 "{{bundle_resources_dir}}/{{source_file_part}}",
81 ]
82 }
83 }
84
ehmaldonado38a21322016-09-02 04:10:34 -070085 rtc_test("common_video_unittests") {
kjellander2a3892a2016-06-08 01:27:52 -070086 testonly = true
87
88 sources = [
89 "bitrate_adjuster_unittest.cc",
kthelgasonb9061722016-10-26 02:48:16 -070090 "h264/h264_bitstream_parser_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070091 "h264/pps_parser_unittest.cc",
magjedfffc1e52016-10-31 05:55:57 -070092 "h264/profile_level_id_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070093 "h264/sps_parser_unittest.cc",
94 "h264/sps_vui_rewriter_unittest.cc",
95 "i420_buffer_pool_unittest.cc",
96 "i420_video_frame_unittest.cc",
97 "libyuv/libyuv_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070098 ]
99
kjellander2a3892a2016-06-08 01:27:52 -0700100 # TODO(jschuh): Bug 1348: fix this warning.
101 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
102
kjellandere40a7ee2016-10-16 23:56:12 -0700103 if (!build_with_chromium && is_clang) {
104 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700105 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander2a3892a2016-06-08 01:27:52 -0700106 }
107
108 deps = [
109 ":common_video",
Mirko Bonadei0594a7c2017-12-18 11:42:48 +0100110 "../api:video_frame_api",
Patrik Höglundb5b5bce2017-11-13 10:19:58 +0100111 "../api:video_frame_api_i420",
ehmaldonado656610f2017-02-06 02:21:11 -0800112 "../modules/video_capture:video_capture",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700113 "../rtc_base:rtc_base",
114 "../rtc_base:rtc_base_approved",
kjellander2a3892a2016-06-08 01:27:52 -0700115 "../system_wrappers:system_wrappers",
ehmaldonado26bddb92016-11-30 06:12:01 -0800116 "../test:test_main",
kjellander2a3892a2016-06-08 01:27:52 -0700117 "../test:video_test_common",
118 "//testing/gmock",
119 "//testing/gtest",
Mirko Bonadei401d0562017-12-14 11:24:00 +0100120 "//third_party/libyuv",
kjellander2a3892a2016-06-08 01:27:52 -0700121 ]
122
ehmaldonado3a7f35b2016-09-14 05:10:01 -0700123 data = common_video_resources
kjellander2a3892a2016-06-08 01:27:52 -0700124 if (is_android) {
125 deps += [ "//testing/android/native_test:native_test_support" ]
kjellander28a0ffd2016-08-24 07:48:42 -0700126 shard_timeout = 900
127 }
kjellander2a3892a2016-06-08 01:27:52 -0700128
kjellander32c4a202016-08-30 02:53:49 -0700129 if (is_ios) {
130 deps += [ ":common_video_unittests_bundle_data" ]
kjellander2a3892a2016-06-08 01:27:52 -0700131 }
132 }
133}