blob: be7194e28378fc60a35ab1d7439b8fb5c424ad00 [file] [log] [blame]
ilnikd60d06a2017-04-05 03:02:20 -07001# Copyright (c) 2017 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
9import("../../webrtc.gni")
10if (is_android) {
11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni")
13}
14
15rtc_source_set("video_codecs_api") {
16 sources = [
17 "video_decoder.h",
mflodman351424e2017-08-10 02:43:14 -070018 "video_encoder.cc",
ilnikd60d06a2017-04-05 03:02:20 -070019 "video_encoder.h",
20 ]
21
22 deps = [
kwiberg84f6a3f2017-09-05 08:43:13 -070023 "..:optional",
nissef93752a2017-05-10 05:25:59 -070024 "..:video_frame_api",
ilnikd60d06a2017-04-05 03:02:20 -070025 "../..:webrtc_common",
nisseea3a7982017-05-15 02:42:11 -070026 "../../common_video",
ehmaldonadof6a861a2017-07-19 10:40:47 -070027 "../../rtc_base:rtc_base_approved",
ilnikd60d06a2017-04-05 03:02:20 -070028 ]
29}