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

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

Issue 742053002: Add missing dependencies to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Correct dependency for component build Created 6 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
« no previous file with comments | « chrome/common/extensions/api/BUILD.gn ('k') | content/gpu/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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//content/child/child.gni") 8 import("//content/child/child.gni")
9 9
10 source_set("child") { 10 source_set("child") {
11 # Only the public target should depend on this. All other targets (even 11 # Only the public target should depend on this. All other targets (even
12 # internal content ones) should depend on the public one. 12 # internal content ones) should depend on the public one.
13 visibility = [ "//content/public/child:child_sources" ] 13 visibility = [ "//content/public/child:child_sources" ]
14 14
15 sources = rebase_path(content_child_gypi_values.private_child_sources, 15 sources = rebase_path(content_child_gypi_values.private_child_sources,
16 ".", "//content") 16 ".", "//content")
17 17
18 public_deps = [
19 "//mojo/edk/system",
20 ]
21
18 deps = [ 22 deps = [
19 "//base", 23 "//base",
20 "//components/tracing", 24 "//components/tracing",
21 "//mojo/common", 25 "//mojo/common",
22 "//mojo/environment:chromium", 26 "//mojo/environment:chromium",
23 "//mojo/public/interfaces/application", 27 "//mojo/public/interfaces/application",
24 "//skia", 28 "//skia",
25 "//third_party/icu", 29 "//third_party/icu",
26 "//ui/base", 30 "//ui/base",
27 "//ui/gfx", 31 "//ui/gfx",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 } 131 }
128 132
129 if (!use_openssl) { 133 if (!use_openssl) {
130 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources, 134 sources += rebase_path(content_child_gypi_values.webcrypto_nss_sources,
131 ".", "//content") 135 ".", "//content")
132 } else { 136 } else {
133 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources, 137 sources += rebase_path(content_child_gypi_values.webcrypto_openssl_sources,
134 ".", "//content") 138 ".", "//content")
135 } 139 }
136 } 140 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/BUILD.gn ('k') | content/gpu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698