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

Side by Side Diff: services/BUILD.gn

Issue 1536713004: Revert "Delete the ViewManager and WindowManager services." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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",
55 "//services/ui", 56 "//services/ui",
56 "//services/native_viewport", 57 "//services/native_viewport",
57 "//services/surfaces", 58 "//services/surfaces",
58 "//services/url_response_disk_cache", 59 "//services/url_response_disk_cache",
60 "//services/view_manager",
61 "//services/window_manager",
59 ] 62 ]
60 } 63 }
61 64
62 # TODO(jamesr): We only support building V8 snapshot data on a linux host 65 # TODO(jamesr): We only support building V8 snapshot data on a linux host
63 # since it needs a 32 bit toolchain and we don't have one configured for mac 66 # since it needs a 32 bit toolchain and we don't have one configured for mac
64 # hosts. 67 # hosts.
65 # TODO(cstout): javascript/v8 build support for fnl/musl 68 # TODO(cstout): javascript/v8 build support for fnl/musl
66 if (!is_fnl && host_os == "linux") { 69 if (!is_fnl && host_os == "linux") {
67 deps += [ "//services/js" ] 70 deps += [ "//services/js" ]
68 } 71 }
(...skipping 14 matching lines...) Expand all
83 86
84 if (is_linux && !is_fnl) { 87 if (is_linux && !is_fnl) {
85 deps += [ "//services/python:python_apptests" ] 88 deps += [ "//services/python:python_apptests" ]
86 } 89 }
87 90
88 if (is_android) { 91 if (is_android) {
89 deps += [ "//services/contacts:apptests" ] 92 deps += [ "//services/contacts:apptests" ]
90 deps += [ "//services/notifications:apptests" ] 93 deps += [ "//services/notifications:apptests" ]
91 } 94 }
92 95
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
93 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it 103 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it
94 # needs a 32 bit toolchain and we don't have one configured for mac hosts. 104 # needs a 32 bit toolchain and we don't have one configured for mac hosts.
95 # TODO(cstout): javascript/v8 build support for fnl/musl 105 # TODO(cstout): javascript/v8 build support for fnl/musl
96 if (!is_fnl && host_os == "linux") { 106 if (!is_fnl && host_os == "linux") {
97 deps += [ "//services/js:tests" ] 107 deps += [ "//services/js:tests" ]
98 } 108 }
99 109
100 if (is_android || is_linux) { 110 if (is_android || is_linux) {
101 deps += [ 111 deps += [
102 "//services/files:apptests", 112 "//services/files:apptests",
103 "//services/url_response_disk_cache:tests", 113 "//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",
104 ] 117 ]
105 } 118 }
106 } 119 }
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