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

Side by Side Diff: mandoline/services/core_services/BUILD.gn

Issue 1245683004: Mandoline: Merge Surfaces and Views apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Rob's comments Created 5 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # core_services should be thought of as a bundle of many of the services which 5 # core_services should be thought of as a bundle of many of the services which
6 # we ship with. 6 # we ship with.
7 7
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/mojo_application.gni") 9 import("//mojo/public/mojo_application.gni")
10 10
(...skipping 25 matching lines...) Expand all
36 source_set("sources") { 36 source_set("sources") {
37 sources = [ 37 sources = [
38 "core_services_application_delegate.cc", 38 "core_services_application_delegate.cc",
39 "main.cc", 39 "main.cc",
40 ] 40 ]
41 41
42 deps = [ 42 deps = [
43 "//base", 43 "//base",
44 "//components/clipboard:lib", 44 "//components/clipboard:lib",
45 "//components/filesystem:lib", 45 "//components/filesystem:lib",
46 "//components/view_manager/surfaces:lib",
47 "//mandoline/ui/browser:lib", 46 "//mandoline/ui/browser:lib",
48 "//mojo/application/public/cpp", 47 "//mojo/application/public/cpp",
49 "//mojo/common:tracing_impl", 48 "//mojo/common:tracing_impl",
50 "//mojo/services/tracing:lib", 49 "//mojo/services/tracing:lib",
51 "//third_party/mojo/src/mojo/public/cpp/bindings", 50 "//third_party/mojo/src/mojo/public/cpp/bindings",
52 ] 51 ]
53 52
54 if (!is_android) { 53 if (!is_android) {
55 deps += [ 54 deps += [
56 "//components/resource_provider:lib", 55 "//components/resource_provider:lib",
57 "//components/view_manager:lib", 56 "//components/view_manager:lib",
58 "//mojo/services/network:lib", 57 "//mojo/services/network:lib",
59 ] 58 ]
60 } 59 }
61 60
62 if (use_aura) { 61 if (use_aura) {
63 deps += [ 62 deps += [
64 "//components/view_manager/public/cpp", 63 "//components/view_manager/public/cpp",
65 "//mandoline/ui/omnibox:lib", 64 "//mandoline/ui/omnibox:lib",
66 ] 65 ]
67 } 66 }
68 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698