Home | History | Annotate | Download | only in rtcp
      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   'targets': [
      7     {
      8       'target_name': 'cast_rtcp',
      9       'type': 'static_library',
     10       'include_dirs': [
     11         '<(DEPTH)/',
     12       ],
     13       'sources': [
     14         'rtcp_defines.h',
     15         'rtcp.h',
     16         'rtcp.cc',
     17         'rtcp_receiver.cc',
     18         'rtcp_receiver.h',
     19         'rtcp_sender.cc',
     20         'rtcp_sender.h',
     21         'rtcp_utility.cc',
     22         'rtcp_utility.h',
     23       ], # source
     24       'dependencies': [
     25         '<(DEPTH)/base/base.gyp:base',
     26         '<(DEPTH)/net/net.gyp:net',
     27       ],
     28     },
     29     {
     30       'target_name': 'cast_rtcp_test',
     31       'type': 'static_library',
     32       'include_dirs': [
     33         '<(DEPTH)/',
     34       ],
     35       'sources': [
     36         'test_rtcp_packet_builder.cc',
     37         'test_rtcp_packet_builder.h',
     38       ], # source
     39       'dependencies': [
     40         'cast_rtcp',
     41         '<(DEPTH)/testing/gtest.gyp:gtest',
     42       ],
     43     },
     44   ],
     45 }
     46 
     47