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

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

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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("//content/utility/utility.gni") 5 import("//content/utility/utility.gni")
6 6
7 source_set("utility") { 7 source_set("utility") {
8 # Only the public target should depend on this. All other targets (even 8 # Only the public target should depend on this. All other targets (even
9 # internal content ones) should depend on the public one. 9 # internal content ones) should depend on the public one.
10 visibility = [ "//content/public/utility:utility_sources" ] 10 visibility = [ "//content/public/utility:utility_sources" ]
11 11
12 sources = 12 sources =
13 rebase_path(content_utility_gypi_values.utility_sources, ".", "//content") 13 rebase_path(content_utility_gypi_values.utility_sources, ".", "//content")
14 14
15 configs += [ "//content:content_implementation" ] 15 configs += [ "//content:content_implementation" ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//content:export", 19 "//content:export",
20 "//content/public/child:child_sources", 20 "//content/public/child:child_sources",
21 "//content/public/common:common_sources", 21 "//content/public/common:common_sources",
22 "//content/public/common:mojo_bindings",
22 "//courgette:courgette_lib", 23 "//courgette:courgette_lib",
24 "//mojo/application/public/cpp:cpp_for_chromium",
23 "//mojo/application/public/interfaces", 25 "//mojo/application/public/interfaces",
26 "//mojo/common",
27 "//mojo/shell",
24 "//third_party/WebKit/public:blink_headers", 28 "//third_party/WebKit/public:blink_headers",
29 "//third_party/mojo/src/mojo/public/cpp/bindings",
30 "//url",
25 ] 31 ]
26 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698