| 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': 'static_library', |
| 23 'dependencies': [ | 23 'dependencies': [ |
| 24 '../base/base.gyp:base', | 24 '../base/base.gyp:base', |
| 25 ], | 25 ], |
| 26 'include_dirs': [ | 26 'include_dirs': [ |
| 27 '..', | 27 '..', |
| 28 ], | 28 ], |
| 29 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', |
| 29 'sources': [ | 30 'sources': [ |
| 30 'audio/linux/audio_manager_linux.cc', | 31 'audio/linux/audio_manager_linux.cc', |
| 31 'audio/mac/audio_manager_mac.cc', | 32 'audio/mac/audio_manager_mac.cc', |
| 32 'audio/win/audio_manager_win.h', | 33 'audio/win/audio_manager_win.h', |
| 33 'audio/win/audio_output_win.cc', | 34 'audio/win/audio_output_win.cc', |
| 34 'audio/win/simple_sources_win.cc', | 35 'audio/win/simple_sources_win.cc', |
| 35 'audio/win/waveout_output_win.cc', | 36 'audio/win/waveout_output_win.cc', |
| 36 'audio/win/waveout_output_win.h', | 37 'audio/win/waveout_output_win.h', |
| 37 'audio/audio_output.h', | 38 'audio/audio_output.h', |
| 38 'audio/simple_sources.h', | 39 'audio/simple_sources.h', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'audio/win/audio_output_win_unittest.cc', | 85 'audio/win/audio_output_win_unittest.cc', |
| 85 'base/data_buffer_unittest.cc', | 86 'base/data_buffer_unittest.cc', |
| 86 'base/pipeline_impl_unittest.cc', | 87 'base/pipeline_impl_unittest.cc', |
| 87 'base/run_all_unittests.cc', | 88 'base/run_all_unittests.cc', |
| 88 'filters/file_data_source_unittest.cc', | 89 'filters/file_data_source_unittest.cc', |
| 89 'filters/video_renderer_unittest.cc', | 90 'filters/video_renderer_unittest.cc', |
| 90 ], | 91 ], |
| 91 }, | 92 }, |
| 92 ], | 93 ], |
| 93 } | 94 } |
| OLD | NEW |