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

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

Issue 1373883003: Move geolocation and permission mojoms into components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/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 ".", 16 ".",
17 "//content") 17 "//content")
18 18
19 configs += [ "//build/config:precompiled_headers" ] 19 configs += [ "//build/config:precompiled_headers" ]
20 20
21 public_deps = [ 21 public_deps = [
22 "//third_party/mojo/src/mojo/edk/system", 22 "//third_party/mojo/src/mojo/edk/system",
23 ] 23 ]
24 24
25 deps = [ 25 deps = [
26 "//base", 26 "//base",
27 "//components/mime_util", 27 "//components/mime_util",
28 "//components/permission/public/interfaces",
28 "//components/tracing", 29 "//components/tracing",
29 "//components/tracing:startup_tracing", 30 "//components/tracing:startup_tracing",
30 "//components/webcrypto", 31 "//components/webcrypto",
31 "//content/common:mojo_bindings", 32 "//content/common:mojo_bindings",
32 "//mojo/application/public/interfaces", 33 "//mojo/application/public/interfaces",
33 "//mojo/common", 34 "//mojo/common",
34 "//mojo/environment:chromium", 35 "//mojo/environment:chromium",
35 "//mojo/message_pump", 36 "//mojo/message_pump",
36 "//skia", 37 "//skia",
37 "//third_party/icu", 38 "//third_party/icu",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 130
130 if (use_aura && is_mac) { 131 if (use_aura && is_mac) {
131 # This file is already excluded on non-Mac. 132 # This file is already excluded on non-Mac.
132 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] 133 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ]
133 } 134 }
134 135
135 if (is_win || !use_aura) { 136 if (is_win || !use_aura) {
136 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] 137 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ]
137 } 138 }
138 } 139 }
OLDNEW
« no previous file with comments | « content/browser/permissions/permission_service_impl.cc ('k') | content/child/background_sync/background_sync_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698