| 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 '../gin/gin.gyp:gin', | 7 '../gin/gin.gyp:gin', |
| 8 '../jingle/jingle.gyp:jingle_glue', | 8 '../jingle/jingle.gyp:jingle_glue', |
| 9 '../media/media.gyp:media', | 9 '../media/media.gyp:media', |
| 10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 # Understand better how media_stream_ is tied into Chromium. | 588 # Understand better how media_stream_ is tied into Chromium. |
| 589 ['enable_webrtc==0 and OS=="android"', { | 589 ['enable_webrtc==0 and OS=="android"', { |
| 590 'sources/': [ | 590 'sources/': [ |
| 591 ['exclude', '^renderer/media/media_stream_'], | 591 ['exclude', '^renderer/media/media_stream_'], |
| 592 ], | 592 ], |
| 593 }], | 593 }], |
| 594 ['enable_webrtc==1', { | 594 ['enable_webrtc==1', { |
| 595 'dependencies': [ | 595 'dependencies': [ |
| 596 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 596 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
| 597 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 597 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
| 598 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 598 '../third_party/webrtc/modules/modules.gyp:audio_device', | 599 '../third_party/webrtc/modules/modules.gyp:audio_device', |
| 599 '../third_party/webrtc/modules/modules.gyp:audio_processing', | 600 '../third_party/webrtc/modules/modules.gyp:audio_processing', |
| 600 '<(DEPTH)/crypto/crypto.gyp:crypto', | 601 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 601 ], | 602 ], |
| 602 'sources': [ | 603 'sources': [ |
| 603 'public/renderer/media_stream_audio_sink.h', | 604 'public/renderer/media_stream_audio_sink.h', |
| 604 'public/renderer/media_stream_audio_sink.cc', | 605 'public/renderer/media_stream_audio_sink.cc', |
| 605 'public/renderer/media_stream_sink.h', | 606 'public/renderer/media_stream_sink.h', |
| 606 'public/renderer/media_stream_video_sink.cc', | 607 'public/renderer/media_stream_video_sink.cc', |
| 607 'public/renderer/media_stream_video_sink.h', | 608 'public/renderer/media_stream_video_sink.h', |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 }], | 774 }], |
| 774 ], | 775 ], |
| 775 'target_conditions': [ | 776 'target_conditions': [ |
| 776 ['OS=="android"', { | 777 ['OS=="android"', { |
| 777 'sources/': [ | 778 'sources/': [ |
| 778 ['include', '^renderer/render_view_linux\\.cc$'], | 779 ['include', '^renderer/render_view_linux\\.cc$'], |
| 779 ], | 780 ], |
| 780 }], | 781 }], |
| 781 ], | 782 ], |
| 782 } | 783 } |
| OLD | NEW |