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

Side by Side Diff: mash/BUILD.gn

Issue 2511233002: Add the beginning of a simple window manager that we'll support on Windows. (Closed)
Patch Set: . Created 4 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
« no previous file with comments | « no previous file | mash/common/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 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("//services/service_manager/public/service_manifest.gni") 5 import("//services/service_manager/public/service_manifest.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 # Target that builders build. 8 # Target that builders build.
9 group("all") { 9 group("all") {
10 testonly = true 10 testonly = true
11 11
12 deps = [ 12 deps = [
13 "//components/leveldb", 13 "//components/leveldb",
14 "//mash/catalog_viewer", 14 "//mash/catalog_viewer",
15 "//mash/example", 15 "//mash/example",
16 "//mash/init", 16 "//mash/init",
17 "//mash/login", 17 "//mash/login",
18 "//mash/screenlock", 18 "//mash/screenlock",
19 "//mash/session", 19 "//mash/session",
20 "//mash/simple_wm",
20 "//mash/task_viewer", 21 "//mash/task_viewer",
21 ] 22 ]
22 23
23 # Build on platforms that support ash. 24 # Build on platforms that support ash.
24 if (is_win || is_chromeos) { 25 if (is_win || is_chromeos) {
25 deps += [ "//mash:mash_unittests" ] 26 deps += [ "//mash:mash_unittests" ]
26 } 27 }
27 } 28 }
28 29
29 group("browser") { 30 group("browser") {
(...skipping 28 matching lines...) Expand all
58 data_deps = [ 59 data_deps = [
59 ":unittests_manifest", 60 ":unittests_manifest",
60 "//ash/mus:resources", 61 "//ash/mus:resources",
61 ] 62 ]
62 } 63 }
63 64
64 service_manifest("unittests_manifest") { 65 service_manifest("unittests_manifest") {
65 name = "mash_unittests" 66 name = "mash_unittests"
66 source = "unittests_manifest.json" 67 source = "unittests_manifest.json"
67 } 68 }
OLDNEW
« no previous file with comments | « no previous file | mash/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698