| OLD | NEW |
| (Empty) |
| 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 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'cast_rtp_receiver', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 '<(DEPTH)/', | |
| 15 '<(DEPTH)/third_party/', | |
| 16 ], | |
| 17 'sources': [ | |
| 18 'receiver_stats.cc', | |
| 19 'receiver_stats.h', | |
| 20 'rtp_receiver.cc', | |
| 21 'rtp_receiver.h', | |
| 22 ], # source | |
| 23 'dependencies': [ | |
| 24 '<(DEPTH)/base/base.gyp:base', | |
| 25 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | |
| 26 'rtp_parser/rtp_parser.gyp:*', | |
| 27 ], | |
| 28 }, | |
| 29 ], | |
| 30 } | |
| OLD | NEW |