Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Unified Diff: media/media.gyp

Issue 27158: Import .gyp files into the Chromium tree (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/security_tests/security_tests.gyp ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
===================================================================
--- media/media.gyp (revision 0)
+++ media/media.gyp (revision 0)
@@ -0,0 +1,90 @@
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'includes': [
+ '../build/common.gypi',
+ ],
+ 'target_defaults': {
+ 'conditions': [
+ ['OS!="linux"', {'sources/': [['exclude', '/linux/']]}],
+ ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}],
+ ['OS!="win"', {'sources/': [['exclude', '/win/']]}],
+ ],
+ },
+ 'targets': [
+ {
+ 'target_name': 'media',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'audio/linux/audio_manager_linux.cc',
+ 'audio/mac/audio_manager_mac.cc',
+ 'audio/win/audio_manager_win.h',
+ 'audio/win/audio_output_win.cc',
+ 'audio/win/simple_sources_win.cc',
+ 'audio/win/waveout_output_win.cc',
+ 'audio/win/waveout_output_win.h',
+ 'audio/audio_output.h',
+ 'audio/simple_sources.h',
+ 'base/buffers.h',
+ 'base/data_buffer.cc',
+ 'base/data_buffer.h',
+ 'base/factory.h',
+ 'base/filter_host.h',
+ 'base/filter_host_impl.cc',
+ 'base/filter_host_impl.h',
+ 'base/filters.h',
+ 'base/media_format.cc',
+ 'base/media_format.h',
+ 'base/mock_filter_host.h',
+ 'base/mock_media_filters.h',
+ 'base/mock_pipeline.h',
+ 'base/pipeline.h',
+ 'base/pipeline_impl.cc',
+ 'base/pipeline_impl.h',
+ 'base/synchronizer.cc',
+ 'base/synchronizer.h',
+ 'filters/audio_renderer_base.cc',
+ 'filters/audio_renderer_base.h',
+ 'filters/audio_renderer_impl.cc',
+ 'filters/audio_renderer_impl.h',
+ 'filters/file_data_source.cc',
+ 'filters/file_data_source.h',
+ 'filters/null_audio_renderer.cc',
+ 'filters/null_audio_renderer.h',
+ 'player/player.cc',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '..',
+ ],
+ },
+ },
+ {
+ 'target_name': 'media_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'media',
+ '../base/base.gyp:base',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'audio/win/audio_output_win_unittest.cc',
+ 'base/data_buffer_unittest.cc',
+ 'base/pipeline_impl_unittest.cc',
+ 'base/run_all_unittests.cc',
+ 'filters/file_data_source_unittest.cc',
+ ],
+ },
+ ],
+}
Property changes on: media/media.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/security_tests/security_tests.gyp ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698