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

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

Issue 2485623002: discardable_memory: Using mojo IPC to replace Chrome IPC (Closed)
Patch Set: Address review issues. Created 4 years, 1 month 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
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 7
8 if (is_component_build) { 8 if (is_component_build) {
9 link_target_type = "source_set" 9 link_target_type = "source_set"
10 } else { 10 } else {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 214
215 configs += [ "//build/config:precompiled_headers" ] 215 configs += [ "//build/config:precompiled_headers" ]
216 216
217 public_deps = [ 217 public_deps = [
218 "//gpu/ipc/client:client", 218 "//gpu/ipc/client:client",
219 ] 219 ]
220 220
221 deps = [ 221 deps = [
222 "//base", 222 "//base",
223 "//components/discardable_memory/client", 223 "//components/discardable_memory/client",
224 "//components/discardable_memory/public/interfaces",
224 "//components/mime_util", 225 "//components/mime_util",
225 "//components/tracing", 226 "//components/tracing",
226 "//components/tracing:startup_tracing", 227 "//components/tracing:startup_tracing",
227 "//components/webcrypto", 228 "//components/webcrypto",
228 "//content/app/resources", 229 "//content/app/resources",
229 "//content/app/strings", 230 "//content/app/strings",
230 "//content/common", 231 "//content/common",
231 "//content/public/common:common_sources", 232 "//content/public/common:common_sources",
232 "//crypto:platform", 233 "//crypto:platform",
233 "//device/power_monitor/public/cpp", 234 "//device/power_monitor/public/cpp",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 293
293 # See comment at the top of //content/BUILD.gn for how this works. 294 # See comment at the top of //content/BUILD.gn for how this works.
294 group("for_content_tests") { 295 group("for_content_tests") {
295 visibility = [ "//content/test/*" ] 296 visibility = [ "//content/test/*" ]
296 if (!is_component_build) { 297 if (!is_component_build) {
297 public_deps = [ 298 public_deps = [
298 ":child", 299 ":child",
299 ] 300 ]
300 } 301 }
301 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698