| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
| 8 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 # TODO(jrg): remove the OS=="android" section? | 104 # TODO(jrg): remove the OS=="android" section? |
| 105 # http://crbug.com/113172 | 105 # http://crbug.com/113172 |
| 106 # Understand better how media_stream_ is tied into Chromium. | 106 # Understand better how media_stream_ is tied into Chromium. |
| 107 if (!enable_webrtc && is_android) { | 107 if (!enable_webrtc && is_android) { |
| 108 sources -= [ | 108 sources -= [ |
| 109 "media/media_stream_audio_level_calculator.cc", | 109 "media/media_stream_audio_level_calculator.cc", |
| 110 "media/media_stream_audio_level_calculator.h", | 110 "media/media_stream_audio_level_calculator.h", |
| 111 "media/media_stream_audio_renderer.cc", | 111 "media/media_stream_audio_renderer.cc", |
| 112 "media/media_stream_audio_renderer.h", | 112 "media/media_stream_audio_renderer.h", |
| 113 "media/media_stream_center.h", | 113 "media/media_stream_center.h", |
| 114 "media/media_stream_client.h", | |
| 115 "media/media_stream_constraints_util.cc", | 114 "media/media_stream_constraints_util.cc", |
| 116 "media/media_stream_constraints_util.h", | 115 "media/media_stream_constraints_util.h", |
| 117 "media/media_stream_dispatcher.h", | 116 "media/media_stream_dispatcher.h", |
| 118 "media/media_stream_dispatcher_eventhandler.h", | 117 "media/media_stream_dispatcher_eventhandler.h", |
| 119 "media/media_stream_impl.h", | 118 "media/media_stream_impl.h", |
| 120 "media/media_stream_track.cc", | 119 "media/media_stream_track.cc", |
| 121 "media/media_stream_track.h", | 120 "media/media_stream_track.h", |
| 122 ] | 121 ] |
| 123 } | 122 } |
| 124 | 123 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 if (enable_plugins && enable_webrtc) { | 163 if (enable_plugins && enable_webrtc) { |
| 165 sources += rebase_path( | 164 sources += rebase_path( |
| 166 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 167 ".", "//content") | 166 ".", "//content") |
| 168 } | 167 } |
| 169 | 168 |
| 170 if (printing_mode == 1) { | 169 if (printing_mode == 1) { |
| 171 deps += [ "//printing" ] | 170 deps += [ "//printing" ] |
| 172 } | 171 } |
| 173 } | 172 } |
| OLD | NEW |