OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Override to dynamically link the PulseAudio library. | 8 # Override to dynamically link the PulseAudio library. |
9 'use_pulseaudio%': 0, | 9 'use_pulseaudio%': 0, |
10 }, | 10 }, |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'media', | 13 'target_name': 'media', |
14 'type': '<(component)', | 14 'type': '<(component)', |
15 'dependencies': [ | 15 'dependencies': [ |
16 'yuv_convert', | 16 'yuv_convert', |
17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
19 '../build/temp_gyp/googleurl.gyp:googleurl', | 19 '../build/temp_gyp/googleurl.gyp:googleurl', |
20 '../third_party/openmax/openmax.gyp:il', | 20 '../third_party/openmax/openmax.gyp:il', |
21 '../ui/ui.gyp:ui', | 21 '../ui/ui.gyp:ui', |
22 ], | 22 ], |
23 'defines': [ | 23 'defines': [ |
24 'MEDIA_IMPLEMENTATION', | 24 'MEDIA_IMPLEMENTATION', |
25 ], | 25 ], |
26 'include_dirs': [ | 26 'include_dirs': [ |
27 '..', | 27 '..', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'audio/audio_buffers_state.cc', | |
vrk (LEFT CHROMIUM)
2012/03/12 18:45:01
Please add this back with the empty ctr definition
| |
31 'audio/audio_buffers_state.h', | 30 'audio/audio_buffers_state.h', |
32 'audio/audio_io.h', | 31 'audio/audio_io.h', |
33 'audio/audio_input_controller.cc', | 32 'audio/audio_input_controller.cc', |
34 'audio/audio_input_controller.h', | 33 'audio/audio_input_controller.h', |
35 'audio/audio_device_name.cc', | 34 'audio/audio_device_name.cc', |
36 'audio/audio_device_name.h', | 35 'audio/audio_device_name.h', |
37 'audio/audio_manager.cc', | 36 'audio/audio_manager.cc', |
38 'audio/audio_manager.h', | 37 'audio/audio_manager.h', |
39 'audio/audio_manager_base.cc', | 38 'audio/audio_manager_base.cc', |
40 'audio/audio_manager_base.h', | 39 'audio/audio_manager_base.h', |
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
941 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 940 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
942 ], | 941 ], |
943 'sources': [ | 942 'sources': [ |
944 'tools/media_bench/media_bench.cc', | 943 'tools/media_bench/media_bench.cc', |
945 ], | 944 ], |
946 }, | 945 }, |
947 ], | 946 ], |
948 }] | 947 }] |
949 ], | 948 ], |
950 } | 949 } |
OLD | NEW |