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

Side by Side Diff: services/BUILD.gn

Issue 1235093002: Move sky_viewer into services/sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: again Created 5 years, 5 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 | « examples/sky_compositor_app/sky_compositor_app.cc ('k') | services/sky/BUILD.gn » ('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 group("services") { 5 group("services") {
6 deps = [ 6 deps = [
7 "//services/asset_bundle", 7 "//services/asset_bundle",
8 "//services/authenticating_url_loader_interceptor", 8 "//services/authenticating_url_loader_interceptor",
9 "//services/authentication", 9 "//services/authentication",
10 "//services/clipboard", 10 "//services/clipboard",
11 "//services/dart", 11 "//services/dart",
12 "//services/debugger", 12 "//services/debugger",
13 "//services/device_info", 13 "//services/device_info",
14 "//services/fake_surfaces", 14 "//services/fake_surfaces",
15 "//services/files", 15 "//services/files",
16 "//services/gles2:lib", 16 "//services/gles2:lib",
17 "//services/http_server", 17 "//services/http_server",
18 "//services/icu_data", 18 "//services/icu_data",
19 "//services/keyboard_native", 19 "//services/keyboard_native",
20 "//services/kiosk_wm", 20 "//services/kiosk_wm",
21 "//services/native_viewport", 21 "//services/native_viewport",
22 "//services/prediction", 22 "//services/prediction",
23 "//services/reaper", 23 "//services/reaper",
24 "//services/sky",
24 "//services/surfaces", 25 "//services/surfaces",
25 "//services/test_service:bindings", 26 "//services/test_service:bindings",
26 "//services/tracing", 27 "//services/tracing",
27 "//services/url_response_disk_cache", 28 "//services/url_response_disk_cache",
28 "//services/view_manager", 29 "//services/view_manager",
29 "//services/window_manager", 30 "//services/window_manager",
30 ] 31 ]
31 32
32 if (is_android) { 33 if (is_android) {
33 deps += [ 34 deps += [
34 "//services/android:java_handler", 35 "//services/android:java_handler",
35 "//services/camera_roll", 36 "//services/camera_roll",
36 "//services/location", 37 "//services/location",
37 "//services/notifications", 38 "//services/notifications",
38 "//services/sensors", 39 "//services/sensors",
39 ] 40 ]
40 } 41 }
41 42
42 if (is_linux) { 43 if (is_linux) {
43 deps += [ "//services/python" ] 44 deps += [ "//services/python" ]
44 } 45 }
45 46
46 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it 47 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it
47 # needs a 32 bit toolchain and we don't have one configured for mac hosts. 48 # needs a 32 bit toolchain and we don't have one configured for mac hosts.
48 if (host_os == "linux") { 49 if (host_os == "linux") {
49 deps += [ "//services/js" ] 50 deps += [ "//services/js" ]
50 } 51 }
51 } 52 }
OLDNEW
« no previous file with comments | « examples/sky_compositor_app/sky_compositor_app.cc ('k') | services/sky/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698