Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: content/renderer/BUILD.gn

Issue 921953002: Split apart the PPAPI GN targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/ppapi_plugin/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "media/webrtc_logging.h", 136 "media/webrtc_logging.h",
137 ] 137 ]
138 } 138 }
139 139
140 if (enable_plugins) { 140 if (enable_plugins) {
141 sources += rebase_path( 141 sources += rebase_path(
142 content_renderer_gypi_values.private_renderer_plugin_sources, 142 content_renderer_gypi_values.private_renderer_plugin_sources,
143 ".", 143 ".",
144 "//content") 144 "//content")
145 deps += [ 145 deps += [
146 "//ppapi:ppapi_host", 146 "//ppapi/host",
147 "//ppapi:ppapi_proxy", 147 "//ppapi/proxy",
148 "//ppapi:ppapi_shared", 148 "//ppapi/shared_impl",
149 "//third_party/libyuv", 149 "//third_party/libyuv",
150 ] 150 ]
151 } else { 151 } else {
152 # These files are in the WebRTC list, but also require plugins. 152 # These files are in the WebRTC list, but also require plugins.
153 if (enable_webrtc) { 153 if (enable_webrtc) {
154 sources -= [ 154 sources -= [
155 "media/webrtc/video_destination_handler.cc", 155 "media/webrtc/video_destination_handler.cc",
156 "media/webrtc/video_destination_handler.h", 156 "media/webrtc/video_destination_handler.h",
157 ] 157 ]
158 } 158 }
(...skipping 30 matching lines...) Expand all
189 } 189 }
190 190
191 if (enable_media_mojo_renderer) { 191 if (enable_media_mojo_renderer) {
192 sources += [ 192 sources += [
193 "media/media_renderer_service_provider.cc", 193 "media/media_renderer_service_provider.cc",
194 "media/media_renderer_service_provider.h", 194 "media/media_renderer_service_provider.h",
195 ] 195 ]
196 deps += [ "//media/mojo/services:renderer_proxy" ] 196 deps += [ "//media/mojo/services:renderer_proxy" ]
197 } 197 }
198 } 198 }
OLDNEW
« no previous file with comments | « content/ppapi_plugin/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698