blob: 43780c113d507fb4b6682f9fef83be530baf7597 [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
kjellanderb62dbbe2016-09-23 00:38:52 -070011rtc_static_library("common_video") {
Per Kjellandera7f2d842018-01-10 15:54:53 +000012 visibility = [ "*" ]
13
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000014 sources = [
emircan55a401e2016-04-26 12:55:07 -070015 "bitrate_adjuster.cc",
kthelgasonb9061722016-10-26 02:48:16 -070016 "h264/h264_bitstream_parser.cc",
17 "h264/h264_bitstream_parser.h",
sprang52033d62016-06-02 02:43:32 -070018 "h264/h264_common.cc",
19 "h264/h264_common.h",
20 "h264/pps_parser.cc",
21 "h264/pps_parser.h",
magjedfffc1e52016-10-31 05:55:57 -070022 "h264/profile_level_id.h",
sprang52033d62016-06-02 02:43:32 -070023 "h264/sps_parser.cc",
24 "h264/sps_parser.h",
25 "h264/sps_vui_rewriter.cc",
26 "h264/sps_vui_rewriter.h",
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000027 "i420_buffer_pool.cc",
emircan55a401e2016-04-26 12:55:07 -070028 "include/bitrate_adjuster.h",
pbosa96b60b2016-04-18 21:12:48 -070029 "include/frame_callback.h",
kjellander6f8ce062015-11-16 13:52:24 -080030 "include/i420_buffer_pool.h",
31 "include/incoming_video_stream.h",
nisseea3a7982017-05-15 02:42:11 -070032 "include/video_frame.h",
kjellander6f8ce062015-11-16 13:52:24 -080033 "include/video_frame_buffer.h",
Peter Boström9a638662015-05-13 13:28:11 +020034 "incoming_video_stream.cc",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000035 "libyuv/include/webrtc_libyuv.h",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000036 "libyuv/webrtc_libyuv.cc",
Miguel Casas-Sanchez47650702015-05-29 17:21:40 -070037 "video_frame.cc",
magjed@webrtc.org2386d6d2015-03-05 14:03:08 +000038 "video_frame_buffer.cc",
Peter Boström9a638662015-05-13 13:28:11 +020039 "video_render_frames.cc",
40 "video_render_frames.h",
kjellander@webrtc.org11bea892014-07-03 17:04:12 +000041 ]
42
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000043 deps = [
44 "..:webrtc_common",
Erik Språngc8caaec2018-05-23 15:20:31 +020045 "../api/video:video_bitrate_allocation",
Jiawei Ou4206a0a2018-07-20 15:49:43 -070046 "../api/video:video_bitrate_allocator",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020047 "../api/video:video_frame",
48 "../api/video:video_frame_i420",
zhihuang130ca7e2017-06-21 01:02:59 -070049 "../media:rtc_h264_profile_id",
Patrik Höglundbe214a22018-01-04 12:14:35 +010050 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -070051 "../rtc_base:rtc_base",
52 "../rtc_base:rtc_task_queue",
Karl Wiberg12edf4c2018-03-07 14:18:56 +010053 "../rtc_base:safe_minmax",
Stefan Holmer0a5792e2018-10-05 13:47:12 +020054 "../system_wrappers:metrics",
Danil Chapovalov196100e2018-06-21 10:17:24 +020055 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundbe214a22018-01-04 12:14:35 +010056 "//third_party/libyuv",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000057 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000058}
kjellander2a3892a2016-06-08 01:27:52 -070059
60if (rtc_include_tests) {
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020061 common_video_resources = [ "../resources/foreman_cif.yuv" ]
kjellander32c4a202016-08-30 02:53:49 -070062
63 if (is_ios) {
64 bundle_data("common_video_unittests_bundle_data") {
65 testonly = true
66 sources = common_video_resources
67 outputs = [
68 "{{bundle_resources_dir}}/{{source_file_part}}",
69 ]
70 }
71 }
72
ehmaldonado38a21322016-09-02 04:10:34 -070073 rtc_test("common_video_unittests") {
kjellander2a3892a2016-06-08 01:27:52 -070074 testonly = true
75
76 sources = [
77 "bitrate_adjuster_unittest.cc",
kthelgasonb9061722016-10-26 02:48:16 -070078 "h264/h264_bitstream_parser_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070079 "h264/pps_parser_unittest.cc",
magjedfffc1e52016-10-31 05:55:57 -070080 "h264/profile_level_id_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070081 "h264/sps_parser_unittest.cc",
82 "h264/sps_vui_rewriter_unittest.cc",
83 "i420_buffer_pool_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070084 "libyuv/libyuv_unittest.cc",
Emircan Uysaler901e0ff2018-06-26 12:22:38 -070085 "video_frame_unittest.cc",
kjellander2a3892a2016-06-08 01:27:52 -070086 ]
87
kjellander2a3892a2016-06-08 01:27:52 -070088 deps = [
89 ":common_video",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020090 "../api/video:video_frame",
Emircan Uysaler901e0ff2018-06-26 12:22:38 -070091 "../api/video:video_frame_i010",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020092 "../api/video:video_frame_i420",
ehmaldonado656610f2017-02-06 02:21:11 -080093 "../modules/video_capture:video_capture",
ehmaldonadof6a861a2017-07-19 10:40:47 -070094 "../rtc_base:rtc_base",
95 "../rtc_base:rtc_base_approved",
Niels Möller2cb7b5e2018-04-19 10:02:26 +020096 "../rtc_base:rtc_base_tests_utils",
Patrik Höglund7696bef2018-03-15 15:05:39 +010097 "../test:fileutils",
ehmaldonado26bddb92016-11-30 06:12:01 -080098 "../test:test_main",
kjellander2a3892a2016-06-08 01:27:52 -070099 "../test:video_test_common",
kjellander2a3892a2016-06-08 01:27:52 -0700100 "//testing/gtest",
Mirko Bonadei401d0562017-12-14 11:24:00 +0100101 "//third_party/libyuv",
kjellander2a3892a2016-06-08 01:27:52 -0700102 ]
103
ehmaldonado3a7f35b2016-09-14 05:10:01 -0700104 data = common_video_resources
kjellander2a3892a2016-06-08 01:27:52 -0700105 if (is_android) {
106 deps += [ "//testing/android/native_test:native_test_support" ]
kjellander28a0ffd2016-08-24 07:48:42 -0700107 shard_timeout = 900
108 }
kjellander2a3892a2016-06-08 01:27:52 -0700109
kjellander32c4a202016-08-30 02:53:49 -0700110 if (is_ios) {
111 deps += [ ":common_video_unittests_bundle_data" ]
kjellander2a3892a2016-06-08 01:27:52 -0700112 }
113 }
114}