| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'media', | 12 'target_name': 'media', |
| 13 'type': '<(library)', | 13 'type': '<(library)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 16 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 16 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '..', | 19 '..', |
| 20 ], | 20 ], |
| 21 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', | 21 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', |
| 22 'sources': [ | 22 'sources': [ |
| 23 'audio/audio_io.h', | 23 'audio/audio_io.h', |
| 24 'audio/audio_input_controller.cc', | 24 'audio/audio_input_controller.cc', |
| 25 'audio/audio_input_controller.h', | 25 'audio/audio_input_controller.h', |
| 26 'audio/audio_manager.h', | |
| 27 'audio/audio_manager.cc', | |
| 28 'audio/audio_manager_base.h', | |
| 29 'audio/audio_manager_base.cc', | |
| 30 'audio/audio_output_controller.cc', | 26 'audio/audio_output_controller.cc', |
| 31 'audio/audio_output_controller.h', | 27 'audio/audio_output_controller.h', |
| 32 'audio/audio_util.cc', | 28 'audio/audio_util.cc', |
| 33 'audio/audio_util.h', | 29 'audio/audio_util.h', |
| 34 'audio/fake_audio_input_stream.cc', | 30 'audio/fake_audio_input_stream.cc', |
| 35 'audio/fake_audio_input_stream.h', | 31 'audio/fake_audio_input_stream.h', |
| 36 'audio/fake_audio_output_stream.cc', | 32 'audio/fake_audio_output_stream.cc', |
| 37 'audio/fake_audio_output_stream.h', | 33 'audio/fake_audio_output_stream.h', |
| 38 'audio/linux/audio_manager_linux.cc', | 34 'audio/linux/audio_manager_linux.cc', |
| 39 'audio/linux/audio_manager_linux.h', | 35 'audio/linux/audio_manager_linux.h', |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 ], | 631 ], |
| 636 }], | 632 }], |
| 637 ], | 633 ], |
| 638 } | 634 } |
| 639 | 635 |
| 640 # Local Variables: | 636 # Local Variables: |
| 641 # tab-width:2 | 637 # tab-width:2 |
| 642 # indent-tabs-mode:nil | 638 # indent-tabs-mode:nil |
| 643 # End: | 639 # End: |
| 644 # vim: set expandtab tabstop=2 shiftwidth=2: | 640 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |