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

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

Issue 358743002: Mojo: Remove InterfaceProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/common/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 targets in the content tree can depend directly on this target. 11 # Only targets in the content tree can depend directly on this target.
12 visibility = [ "//content/*" ] 12 visibility = [ "//content/*" ]
13 13
14 sources = rebase_path(content_child_gypi_values.private_child_sources, 14 sources = rebase_path(content_child_gypi_values.private_child_sources,
15 ".", "//content") 15 ".", "//content")
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//components/tracing", 19 "//components/tracing",
20 "//mojo/environment:chromium", 20 "//mojo/environment:chromium",
21 "//mojo/public/interfaces/interface_provider", 21 "//mojo/public/interfaces/service_provider",
22 "//skia", 22 "//skia",
23 "//third_party/icu", 23 "//third_party/icu",
24 "//ui/base", 24 "//ui/base",
25 "//ui/gfx", 25 "//ui/gfx",
26 "//ui/gfx/geometry", 26 "//ui/gfx/geometry",
27 "//url", 27 "//url",
28 ] 28 ]
29 29
30 if (!use_default_render_theme) { 30 if (!use_default_render_theme) {
31 sources -= [ 31 sources -= [
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 if (is_win) { 105 if (is_win) {
106 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] 106 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ]
107 } 107 }
108 108
109 if (!use_openssl) { 109 if (!use_openssl) {
110 sources -= [ "webcrypto/platform_crypto_openssl.cc" ] 110 sources -= [ "webcrypto/platform_crypto_openssl.cc" ]
111 } else { 111 } else {
112 sources -= [ "webcrypto/platform_crypto_nss.cc" ] 112 sources -= [ "webcrypto/platform_crypto_nss.cc" ]
113 } 113 }
114 } 114 }
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698