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

Side by Side Diff: mandoline/ui/browser/BUILD.gn

Issue 1166123005: Removes ServiceProviders from ViewManager::Embed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use is_headless rather than check for browser. 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
« no previous file with comments | « mandoline/tab/frame_services.cc ('k') | mandoline/ui/browser/browser.h » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/mojo_application_package.gni") 6 import("//mojo/mojo_application_package.gni")
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
8 8
9 mojo_application_package("browser") { 9 mojo_application_package("browser") {
10 sources = [ 10 sources = [
11 "main.cc", 11 "main.cc",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 ":lib", 15 ":lib",
16 "//mandoline/services/navigation/public/interfaces", 16 "//mandoline/services/navigation/public/interfaces",
17 "//mojo/application/public/cpp", 17 "//mojo/application/public/cpp",
18 ] 18 ]
19 resources = [ 19 resources = [
20 "$root_out_dir/icudtl.dat", 20 "$root_out_dir/icudtl.dat",
21 "$root_out_dir/ui_test.pak", 21 "$root_out_dir/ui_test.pak",
22 ] 22 ]
23 } 23 }
24 24
25 source_set("lib") { 25 source_set("lib") {
26 sources = [ 26 sources = [
27 "browser.cc", 27 "browser.cc",
28 "browser.h", 28 "browser.h",
29 "merged_service_provider.cc",
30 "merged_service_provider.h",
31 "navigator_host_impl.cc", 29 "navigator_host_impl.cc",
32 "navigator_host_impl.h", 30 "navigator_host_impl.h",
33 ] 31 ]
34 32
35 deps = [ 33 deps = [
36 ":interfaces", 34 ":interfaces",
37 "//base", 35 "//base",
38 "//components/view_manager/public/cpp", 36 "//components/view_manager/public/cpp",
39 "//mandoline/services/navigation/public/interfaces", 37 "//mandoline/services/navigation/public/interfaces",
40 "//mandoline/tab", 38 "//mandoline/tab",
(...skipping 26 matching lines...) Expand all
67 "view_embedder.mojom", 65 "view_embedder.mojom",
68 ] 66 ]
69 67
70 import_dirs = [ "//mojo/services" ] 68 import_dirs = [ "//mojo/services" ]
71 69
72 deps = [ 70 deps = [
73 "//mojo/application/public/interfaces", 71 "//mojo/application/public/interfaces",
74 "//mojo/services/network/public/interfaces", 72 "//mojo/services/network/public/interfaces",
75 ] 73 ]
76 } 74 }
OLDNEW
« no previous file with comments | « mandoline/tab/frame_services.cc ('k') | mandoline/ui/browser/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698