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

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

Issue 922983002: Sort GN files under content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/plugin/BUILD.gn ('k') | content/shell/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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 deps += [ 125 deps += [
126 "//crypto", 126 "//crypto",
127 "//third_party/libyuv", 127 "//third_party/libyuv",
128 "//third_party/webrtc/modules/audio_device", 128 "//third_party/webrtc/modules/audio_device",
129 "//third_party/webrtc/modules/audio_processing", 129 "//third_party/webrtc/modules/audio_processing",
130 "//third_party/libjingle:libjingle_webrtc", 130 "//third_party/libjingle:libjingle_webrtc",
131 "//third_party/libjingle:libpeerconnection", 131 "//third_party/libjingle:libpeerconnection",
132 ] 132 ]
133 } else { 133 } else {
134 sources += [ 134 sources += [
135 "media/webrtc_logging.h",
135 "media/webrtc_logging_noop.cc", 136 "media/webrtc_logging_noop.cc",
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/host", 146 "//ppapi/host",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/plugin/BUILD.gn ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698