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

Side by Side Diff: services/BUILD.gn

Issue 1530333005: Delete the ViewManager and WindowManager services. (Closed) Base URL: git@github.com:domokit/mojo.git@cl-2c
Patch Set: rebase Created 5 years 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 group("services") { 5 group("services") {
6 testonly = true 6 testonly = true
7 7
8 deps = [ 8 deps = [
9 ":tests", 9 ":tests",
10 "//services/asset_bundle", 10 "//services/asset_bundle",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 46
47 if (is_linux && !is_fnl) { 47 if (is_linux && !is_fnl) {
48 deps += [ "//services/python" ] 48 deps += [ "//services/python" ]
49 } 49 }
50 50
51 if (is_android || is_linux) { 51 if (is_android || is_linux) {
52 deps += [ 52 deps += [
53 "//services/device_info", 53 "//services/device_info",
54 "//services/files", 54 "//services/files",
55 "//services/kiosk_wm",
56 "//services/ui", 55 "//services/ui",
57 "//services/native_viewport", 56 "//services/native_viewport",
58 "//services/surfaces", 57 "//services/surfaces",
59 "//services/url_response_disk_cache", 58 "//services/url_response_disk_cache",
60 "//services/view_manager",
61 "//services/window_manager",
62 ] 59 ]
63 } 60 }
64 61
65 # TODO(jamesr): We only support building V8 snapshot data on a linux host 62 # TODO(jamesr): We only support building V8 snapshot data on a linux host
66 # since it needs a 32 bit toolchain and we don't have one configured for mac 63 # since it needs a 32 bit toolchain and we don't have one configured for mac
67 # hosts. 64 # hosts.
68 # TODO(cstout): javascript/v8 build support for fnl/musl 65 # TODO(cstout): javascript/v8 build support for fnl/musl
69 if (!is_fnl && host_os == "linux") { 66 if (!is_fnl && host_os == "linux") {
70 deps += [ "//services/js" ] 67 deps += [ "//services/js" ]
71 } 68 }
(...skipping 14 matching lines...) Expand all
86 83
87 if (is_linux && !is_fnl) { 84 if (is_linux && !is_fnl) {
88 deps += [ "//services/python:python_apptests" ] 85 deps += [ "//services/python:python_apptests" ]
89 } 86 }
90 87
91 if (is_android) { 88 if (is_android) {
92 deps += [ "//services/contacts:apptests" ] 89 deps += [ "//services/contacts:apptests" ]
93 deps += [ "//services/notifications:apptests" ] 90 deps += [ "//services/notifications:apptests" ]
94 } 91 }
95 92
96 if (is_linux || is_android) {
97 deps += [
98 "//services/window_manager:window_manager_apptests",
99 "//services/window_manager:window_manager_unittests",
100 ]
101 }
102
103 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it 93 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it
104 # needs a 32 bit toolchain and we don't have one configured for mac hosts. 94 # needs a 32 bit toolchain and we don't have one configured for mac hosts.
105 # TODO(cstout): javascript/v8 build support for fnl/musl 95 # TODO(cstout): javascript/v8 build support for fnl/musl
106 if (!is_fnl && host_os == "linux") { 96 if (!is_fnl && host_os == "linux") {
107 deps += [ "//services/js:tests" ] 97 deps += [ "//services/js:tests" ]
108 } 98 }
109 99
110 if (is_android || is_linux) { 100 if (is_android || is_linux) {
111 deps += [ 101 deps += [
112 "//services/files:apptests", 102 "//services/files:apptests",
113 "//services/url_response_disk_cache:tests", 103 "//services/url_response_disk_cache:tests",
114 "//services/view_manager:mojo_view_manager_client_apptests",
115 "//services/view_manager:view_manager_service_apptests",
116 "//services/view_manager:view_manager_service_unittests",
117 ] 104 ]
118 } 105 }
119 } 106 }
OLDNEW
« no previous file with comments | « mojo/services/window_manager/interfaces/window_manager_internal.mojom ('k') | services/kiosk_wm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698