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

Side by Side Diff: services/BUILD.gn

Issue 1139453002: Initial native keyboard proof of concept. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 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/clipboard", 7 "//services/clipboard",
8 "//services/console", 8 "//services/console",
9 "//services/dart", 9 "//services/dart",
10 "//services/device_info", 10 "//services/device_info",
11 "//services/fake_surfaces", 11 "//services/fake_surfaces",
12 "//services/files", 12 "//services/files",
13 "//services/gles2:lib", 13 "//services/gles2:lib",
14 "//services/http_server", 14 "//services/http_server",
15 "//services/icu_data", 15 "//services/icu_data",
16 "//services/js",
jamesr 2015/05/08 20:55:16 looks like a bad merge, the //services/js dep is o
APW 2015/05/08 22:09:28 Done.
17 "//services/keyboard_native",
16 "//services/kiosk_wm", 18 "//services/kiosk_wm",
17 "//services/native_viewport", 19 "//services/native_viewport",
18 "//services/reaper", 20 "//services/reaper",
19 "//services/url_response_disk_cache", 21 "//services/url_response_disk_cache",
20 "//services/surfaces", 22 "//services/surfaces",
21 "//services/test_service:bindings", 23 "//services/test_service:bindings",
22 "//services/tracing", 24 "//services/tracing",
23 "//services/view_manager", 25 "//services/view_manager",
24 "//services/window_manager", 26 "//services/window_manager",
25 ] 27 ]
(...skipping 10 matching lines...) Expand all
36 if (is_linux) { 38 if (is_linux) {
37 deps += [ "//services/python" ] 39 deps += [ "//services/python" ]
38 } 40 }
39 41
40 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it 42 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc e it
41 # needs a 32 bit toolchain and we don't have one configured for mac hosts. 43 # needs a 32 bit toolchain and we don't have one configured for mac hosts.
42 if (host_os == "linux") { 44 if (host_os == "linux") {
43 deps += [ "//services/js" ] 45 deps += [ "//services/js" ]
44 } 46 }
45 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698