• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6  'includes': [
7    'codecs/vp8/vp8_encoder.gypi',
8  ],
9  'targets': [
10    {
11      'target_name': 'video_sender',
12      'type': 'static_library',
13      'include_dirs': [
14         '<(DEPTH)/',
15         '<(DEPTH)/third_party/',
16      ],
17      'sources': [
18        'video_encoder.h',
19        'video_encoder.cc',
20        'video_sender.h',
21        'video_sender.cc',
22      ], # source
23      'dependencies': [
24        '<(DEPTH)/crypto/crypto.gyp:crypto',
25        '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*',
26        '<(DEPTH)/media/cast/net/rtp_sender/rtp_sender.gyp:*',
27        '<(DEPTH)/media/media.gyp:media',
28        '<(DEPTH)/media/media.gyp:shared_memory_support',
29        'congestion_control',
30        'cast_vp8_encoder',
31      ],
32    },
33  ],
34}
35