| 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 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
| 9 '../cc/cc.gyp:cc', | 9 '../cc/cc.gyp:cc', |
| 10 '../cc/cc.gyp:cc_proto', | 10 '../cc/cc.gyp:cc_proto', |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 840 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
| 841 '../third_party/webrtc/modules/modules.gyp:audio_device', | 841 '../third_party/webrtc/modules/modules.gyp:audio_device', |
| 842 '../third_party/webrtc/modules/modules.gyp:audio_processing', | 842 '../third_party/webrtc/modules/modules.gyp:audio_processing', |
| 843 '../third_party/webrtc/p2p/p2p.gyp:libstunprober', | 843 '../third_party/webrtc/p2p/p2p.gyp:libstunprober', |
| 844 '<(DEPTH)/crypto/crypto.gyp:crypto', | 844 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 845 ], | 845 ], |
| 846 'sources': [ | 846 'sources': [ |
| 847 '<@(public_renderer_webrtc_sources)', | 847 '<@(public_renderer_webrtc_sources)', |
| 848 '<@(private_renderer_webrtc_sources)', | 848 '<@(private_renderer_webrtc_sources)', |
| 849 ], | 849 ], |
| 850 'includes': [ |
| 851 '../third_party/webrtc/build/common.gypi', |
| 852 ], |
| 853 'conditions': [ |
| 854 ['rtc_use_h264==1', { |
| 855 'defines': [ |
| 856 'WEBRTC_USE_H264', |
| 857 ], |
| 858 }] |
| 859 ], |
| 850 },{ # enable_webrtc==0 | 860 },{ # enable_webrtc==0 |
| 851 'sources': [ | 861 'sources': [ |
| 852 'renderer/media/webrtc_logging.h', | 862 'renderer/media/webrtc_logging.h', |
| 853 'renderer/media/webrtc_logging_noop.cc', | 863 'renderer/media/webrtc_logging_noop.cc', |
| 854 ], | 864 ], |
| 855 # TODO(jrg): Understand better how media_stream_ is tied into Chromium, | 865 # TODO(jrg): Understand better how media_stream_ is tied into Chromium, |
| 856 # and maybe remove the OS=="android" section? http://crbug.com/113172 | 866 # and maybe remove the OS=="android" section? http://crbug.com/113172 |
| 857 'conditions': [ | 867 'conditions': [ |
| 858 ['OS=="android"', { | 868 ['OS=="android"', { |
| 859 'sources/': [ | 869 'sources/': [ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 }], | 930 }], |
| 921 ], | 931 ], |
| 922 'target_conditions': [ | 932 'target_conditions': [ |
| 923 ['OS=="android"', { | 933 ['OS=="android"', { |
| 924 'sources/': [ | 934 'sources/': [ |
| 925 ['include', '^renderer/render_view_linux\\.cc$'], | 935 ['include', '^renderer/render_view_linux\\.cc$'], |
| 926 ], | 936 ], |
| 927 }], | 937 }], |
| 928 ], | 938 ], |
| 929 } | 939 } |
| OLD | NEW |