1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//content/renderer/renderer.gni")
import("//media/media_options.gni")
source_set("renderer") {
# Only the public target should depend on this. All other targets (even
# internal content ones) should depend on the public one.
visibility = [ "//content/public/renderer:renderer_sources" ]
sources = rebase_path(content_renderer_gypi_values.private_renderer_sources,
".",
"//content")
configs += [ "//content:content_implementation" ]
deps = [
# TODO(GYP) bug 376846 remove this. This should be inherited from //net but
# those don't cross component boundaries.
"//crypto:platform",
"//base/allocator",
"//cc",
"//cc/blink",
"//content:resources",
"//content/common:mojo_bindings",
"//content/public/child:child_sources",
"//content/public/common:common_sources",
"//content/public/common:mojo_bindings",
"//device/battery:mojo_bindings",
"//device/vibration:mojo_bindings",
"//gin",
"//gpu",
"//gpu/command_buffer/client:gles2_interface",
"//jingle:jingle_glue",
"//media",
"//media/blink",
"//mojo/edk/js",
"//mojo/environment:chromium",
"//mojo/public/js",
"//mojo/public/interfaces/application",
"//net",
"//skia",
"//storage/common",
"//third_party/icu",
"//third_party/libjingle",
"//third_party/npapi",
"//third_party/WebKit/public:blink",
"//third_party/widevine/cdm:version_h",
"//ui/accessibility",
"//ui/base",
"//ui/events:events_base",
"//ui/events:dom4_keycode_converter",
"//ui/gl",
"//ui/native_theme",
"//ui/surface",
"//v8",
"//webkit/common/gpu",
]
if (is_mac) {
sources -= [
"webscrollbarbehavior_impl_gtkoraura.cc",
"webscrollbarbehavior_impl_gtkoraura.h",
]
sources += [
"external_popup_menu.cc",
"external_popup_menu.h",
]
}
if (is_android) {
sources -= [ "media/audio_decoder.cc" ]
sources += [
"external_popup_menu.cc",
"external_popup_menu.h",
]
# Add back the Linux file which Android shares.
set_sources_assignment_filter([])
sources += [ "render_view_linux.cc" ]
deps += [
"//third_party/android_tools:cpu_features",
"//third_party/libphonenumber",
]
} else {
sources -= [
"java/gin_java_bridge_dispatcher.cc",
"java/gin_java_bridge_dispatcher.h",
"java/gin_java_bridge_object.cc",
"java/gin_java_bridge_object.h",
"java/gin_java_bridge_value_converter.cc",
"java/gin_java_bridge_value_converter.h",
]
}
# TODO(jrg): remove the OS=="android" section?
# http://crbug.com/113172
# Understand better how media_stream_ is tied into Chromium.
if (!enable_webrtc && is_android) {
sources -= [
"media/media_stream_audio_level_calculator.cc",
"media/media_stream_audio_level_calculator.h",
"media/media_stream_audio_renderer.cc",
"media/media_stream_audio_renderer.h",
"media/media_stream_center.h",
"media/media_stream_constraints_util.cc",
"media/media_stream_constraints_util.h",
"media/media_stream_dispatcher.h",
"media/media_stream_dispatcher_eventhandler.h",
"media/media_stream_track.cc",
"media/media_stream_track.h",
]
}
if (enable_webrtc) {
sources += rebase_path(
content_renderer_gypi_values.private_renderer_webrtc_sources,
".",
"//content")
deps += [
"//crypto",
"//third_party/libyuv",
"//third_party/webrtc/modules/audio_device",
"//third_party/webrtc/modules/audio_processing",
"//third_party/libjingle:libjingle_webrtc",
"//third_party/libjingle:libpeerconnection",
]
} else {
sources += [
"media/webrtc_logging_noop.cc",
"media/webrtc_logging.h",
]
}
if (enable_plugins) {
sources += rebase_path(
content_renderer_gypi_values.private_renderer_plugin_sources,
".",
"//content")
deps += [
"//ppapi:ppapi_host",
"//ppapi:ppapi_proxy",
"//ppapi:ppapi_shared",
"//third_party/libyuv",
]
} else {
# These files are in the WebRTC list, but also require plugins.
if (enable_webrtc) {
sources -= [
"media/webrtc/video_destination_handler.cc",
"media/webrtc/video_destination_handler.h",
]
}
}
if (enable_plugins && enable_webrtc) {
sources += rebase_path(
content_renderer_gypi_values.private_renderer_plugin_webrtc_sources,
".",
"//content")
}
if (!enable_pepper_cdms) {
sources -= [
"media/crypto/pepper_cdm_wrapper.h",
"media/crypto/pepper_cdm_wrapper_impl.cc",
"media/crypto/pepper_cdm_wrapper_impl.h",
"media/crypto/ppapi_decryptor.cc",
"media/crypto/ppapi_decryptor.h",
]
}
if (enable_print_preview) {
deps += [ "//printing" ]
}
if (enable_browser_cdms) {
sources += [
"media/crypto/proxy_media_keys.cc",
"media/crypto/proxy_media_keys.h",
"media/crypto/renderer_cdm_manager.cc",
"media/crypto/renderer_cdm_manager.h",
]
}
}
|