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

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

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
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/child/child.gni") 7 import("//content/child/child.gni")
8 8
9 if (is_component_build) { 9 if (is_component_build) {
10 link_target_type = "source_set" 10 link_target_type = "source_set"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "//components/webcrypto", 52 "//components/webcrypto",
53 "//content/app/resources", 53 "//content/app/resources",
54 "//content/app/strings", 54 "//content/app/strings",
55 "//content/common", 55 "//content/common",
56 "//content/public/common:common_sources", 56 "//content/public/common:common_sources",
57 "//crypto:platform", 57 "//crypto:platform",
58 "//gpu/command_buffer/client", 58 "//gpu/command_buffer/client",
59 "//media", 59 "//media",
60 "//mojo/common", 60 "//mojo/common",
61 "//mojo/edk/system", 61 "//mojo/edk/system",
62 "//mojo/message_pump",
62 "//net", 63 "//net",
63 "//services/shell/public/cpp", 64 "//services/shell/public/cpp",
64 "//services/shell/public/interfaces", 65 "//services/shell/public/interfaces",
65 "//services/shell/runner/common", 66 "//services/shell/runner/common",
66 "//skia", 67 "//skia",
67 "//storage/common", 68 "//storage/common",
68 "//third_party/WebKit/public:blink_headers", 69 "//third_party/WebKit/public:blink_headers",
69 "//third_party/WebKit/public:image_resources", 70 "//third_party/WebKit/public:image_resources",
70 "//third_party/WebKit/public:resources", 71 "//third_party/WebKit/public:resources",
71 "//third_party/icu", 72 "//third_party/icu",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 111
111 # See comment at the top of //content/BUILD.gn for how this works. 112 # See comment at the top of //content/BUILD.gn for how this works.
112 group("for_content_tests") { 113 group("for_content_tests") {
113 visibility = [ "//content/test/*" ] 114 visibility = [ "//content/test/*" ]
114 if (!is_component_build) { 115 if (!is_component_build) {
115 public_deps = [ 116 public_deps = [
116 ":child", 117 ":child",
117 ] 118 ]
118 } 119 }
119 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698