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

Side by Side Diff: mash/BUILD.gn

Issue 1684823004: Refactors keyboard related code so mash can use a keyboard (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: always compile mojo_shell Created 4 years, 10 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 # Target that builders build. 7 # Target that builders build.
8 group("all") { 8 group("all") {
9 testonly = true 9 testonly = true
10 10
11 deps = [ 11 deps = [
12 ":tests", 12 ":tests",
13 "//mash/example", 13 "//mash/example",
14 "//mash/screenlock", 14 "//mash/screenlock",
15 "//mash/shell", 15 "//mash/shell",
16 "//mash/task_viewer", 16 "//mash/task_viewer",
17 ] 17 ]
18
19 if (use_ash) {
20 deps += [ "//ash/mus" ]
21 }
sadrul 2016/02/10 23:57:14 //mash/shell adds //ash/mus as a data-dependency w
sky 2016/02/11 18:00:24 Done.
18 } 22 }
19 23
20 group("tests") { 24 group("tests") {
21 testonly = true 25 testonly = true
22 26
23 deps = [ 27 deps = [
24 ":mash_unittests", 28 ":mash_unittests",
25 "//mash/wm:tests", 29 "//mash/wm:tests",
26 ] 30 ]
27 } 31 }
28 32
29 test("mash_unittests") { 33 test("mash_unittests") {
30 deps = [ 34 deps = [
31 "//base", 35 "//base",
32 "//base/test:run_all_unittests", 36 "//base/test:run_all_unittests",
33 "//base/test:test_config", 37 "//base/test:test_config",
34 "//base/test:test_support", 38 "//base/test:test_support",
35 "//mash/wm:unittests", 39 "//mash/wm:unittests",
36 "//mojo/platform_handle:platform_handle_impl", 40 "//mojo/platform_handle:platform_handle_impl",
37 ] 41 ]
38 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698