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

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: Created 4 years, 7 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 source_set("child") { 9 source_set("child") {
10 # Targets external to content should always link to the public API. 10 # Targets external to content should always link to the public API.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//components/webcrypto", 44 "//components/webcrypto",
45 "//content/app/resources", 45 "//content/app/resources",
46 "//content/app/strings", 46 "//content/app/strings",
47 "//content/common", 47 "//content/common",
48 "//content/public/common:common_sources", 48 "//content/public/common:common_sources",
49 "//crypto:platform", 49 "//crypto:platform",
50 "//gpu/command_buffer/client", 50 "//gpu/command_buffer/client",
51 "//ipc/mojo", 51 "//ipc/mojo",
52 "//media", 52 "//media",
53 "//mojo/common", 53 "//mojo/common",
54 "//mojo/message_pump",
54 "//net", 55 "//net",
55 "//services/shell/public/interfaces", 56 "//services/shell/public/interfaces",
56 "//services/shell/runner/common", 57 "//services/shell/runner/common",
57 "//skia", 58 "//skia",
58 "//storage/common", 59 "//storage/common",
59 "//third_party/WebKit/public:blink_headers", 60 "//third_party/WebKit/public:blink_headers",
60 "//third_party/WebKit/public:image_resources", 61 "//third_party/WebKit/public:image_resources",
61 "//third_party/WebKit/public:resources", 62 "//third_party/WebKit/public:resources",
62 "//third_party/icu", 63 "//third_party/icu",
63 "//ui/base", 64 "//ui/base",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 101
101 # See comment at the top of //content/BUILD.gn for how this works. 102 # See comment at the top of //content/BUILD.gn for how this works.
102 group("for_content_tests") { 103 group("for_content_tests") {
103 visibility = [ "//content/test/*" ] 104 visibility = [ "//content/test/*" ]
104 if (!is_component_build) { 105 if (!is_component_build) {
105 public_deps = [ 106 public_deps = [
106 ":child", 107 ":child",
107 ] 108 ]
108 } 109 }
109 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698