| OLD | NEW |
| (Empty) |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 # Use of the 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_vp8_decoder', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 '<(DEPTH)/', | |
| 15 '<(DEPTH)/third_party/', | |
| 16 '<(DEPTH)/third_party/libvpx/', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'vp8_decoder.cc', | |
| 20 'vp8_decoder.h', | |
| 21 ], # source | |
| 22 'dependencies': [ | |
| 23 '<(DEPTH)/base/base.gyp:base', | |
| 24 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', | |
| 25 ], | |
| 26 }, | |
| 27 ], | |
| 28 } | |
| OLD | NEW |