| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| 11 ], | 11 ], |
| 12 'target_defaults': { | 12 'target_defaults': { |
| 13 'conditions': [ | 13 'conditions': [ |
| 14 ['OS!="linux"', {'sources/': [['exclude', '/linux/']]}], | 14 ['OS!="linux"', {'sources/': [['exclude', '/linux/']]}], |
| 15 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}], | 15 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}], |
| 16 ['OS!="win"', {'sources/': [['exclude', '/win/']]}], | 16 ['OS!="win"', {'sources/': [['exclude', '/win/']]}], |
| 17 ], | 17 ], |
| 18 }, | 18 }, |
| 19 'targets': [ | 19 'targets': [ |
| 20 { | 20 { |
| 21 'target_name': 'media', | 21 'target_name': 'media', |
| 22 'type': 'static_library', | 22 'type': '<(library)', |
| 23 'dependencies': [ | 23 'dependencies': [ |
| 24 '../base/base.gyp:base', | 24 '../base/base.gyp:base', |
| 25 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 25 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 26 ], | 26 ], |
| 27 'include_dirs': [ | 27 'include_dirs': [ |
| 28 '..', | 28 '..', |
| 29 ], | 29 ], |
| 30 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', | 30 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', |
| 31 'sources': [ | 31 'sources': [ |
| 32 'audio/audio_output.h', | 32 'audio/audio_output.h', |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 175 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 176 ], | 176 ], |
| 177 'sources': [ | 177 'sources': [ |
| 178 'player/player.cc', | 178 'player/player.cc', |
| 179 ], | 179 ], |
| 180 }, | 180 }, |
| 181 ], | 181 ], |
| 182 }], | 182 }], |
| 183 ], | 183 ], |
| 184 } | 184 } |
| OLD | NEW |