| 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_framer', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 '<(DEPTH)/', | |
| 15 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | |
| 16 '<(DEPTH)/third_party/', | |
| 17 '<(DEPTH)/third_party/webrtc', | |
| 18 ], | |
| 19 'sources': [ | |
| 20 'cast_message_builder.cc', | |
| 21 'cast_message_builder.h', | |
| 22 'frame_buffer.cc', | |
| 23 'frame_buffer.h', | |
| 24 'frame_id_map.cc', | |
| 25 'frame_id_map.h', | |
| 26 'framer.cc', | |
| 27 'framer.h', | |
| 28 ], | |
| 29 }, | |
| 30 ], # targets | |
| 31 } | |
| OLD | NEW |