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 'dependencies': [ | 6 'dependencies': [ |
7 '../jingle/jingle.gyp:jingle_glue', | 7 '../jingle/jingle.gyp:jingle_glue', |
8 '../media/media.gyp:media', | 8 '../media/media.gyp:media', |
9 '../net/net.gyp:net', | 9 '../net/net.gyp:net', |
10 '../skia/skia.gyp:skia', | 10 '../skia/skia.gyp:skia', |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
573 }], | 573 }], |
574 ['enable_webrtc==1', { | 574 ['enable_webrtc==1', { |
575 'dependencies': [ | 575 'dependencies': [ |
576 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 576 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
577 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 577 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
578 '../third_party/webrtc/modules/modules.gyp:audio_device', | 578 '../third_party/webrtc/modules/modules.gyp:audio_device', |
579 '../third_party/webrtc/modules/modules.gyp:audio_processing', | 579 '../third_party/webrtc/modules/modules.gyp:audio_processing', |
580 '<(DEPTH)/crypto/crypto.gyp:crypto', | 580 '<(DEPTH)/crypto/crypto.gyp:crypto', |
581 ], | 581 ], |
582 'sources': [ | 582 'sources': [ |
583 'public/renderer/media_stream_audio_sink.h' | |
no longer working on chromium
2013/11/27 13:36:20
Note, I put them under enable_webrtc==1 otherwise
| |
584 'public/renderer/media_stream_audio_sink.cc' | |
583 'public/renderer/webrtc_log_message_delegate.h', | 585 'public/renderer/webrtc_log_message_delegate.h', |
584 'renderer/media/media_stream_audio_processor.cc', | 586 'renderer/media/media_stream_audio_processor.cc', |
585 'renderer/media/media_stream_audio_processor.h', | 587 'renderer/media/media_stream_audio_processor.h', |
586 'renderer/media/media_stream_audio_processor_options.cc', | 588 'renderer/media/media_stream_audio_processor_options.cc', |
587 'renderer/media/media_stream_audio_processor_options.h', | 589 'renderer/media/media_stream_audio_processor_options.h', |
588 'renderer/media/media_stream_center.cc', | 590 'renderer/media/media_stream_center.cc', |
589 'renderer/media/media_stream_dependency_factory.cc', | 591 'renderer/media/media_stream_dependency_factory.cc', |
590 'renderer/media/media_stream_dispatcher.cc', | 592 'renderer/media/media_stream_dispatcher.cc', |
591 'renderer/media/media_stream_impl.cc', | 593 'renderer/media/media_stream_impl.cc', |
592 'renderer/media/media_stream_registry_interface.h', | 594 'renderer/media/media_stream_registry_interface.h', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
728 }], | 730 }], |
729 ], | 731 ], |
730 'target_conditions': [ | 732 'target_conditions': [ |
731 ['OS=="android"', { | 733 ['OS=="android"', { |
732 'sources/': [ | 734 'sources/': [ |
733 ['include', '^renderer/render_view_linux\\.cc$'], | 735 ['include', '^renderer/render_view_linux\\.cc$'], |
734 ], | 736 ], |
735 }], | 737 }], |
736 ], | 738 ], |
737 } | 739 } |
OLD | NEW |