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

Side by Side Diff: ash/mus/wm/BUILD.gn

Issue 1641003002: [exp] ash: Ash in Mus. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot-merge 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
« no previous file with comments | « ash/host/transformer_helper.cc ('k') | ash/mus/wm/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application.gni")
7 import("//mojo/public/tools/bindings/mojom.gni")
8 import("//tools/grit/repack.gni")
9
10 source_set("lib") {
11 testonly = true
12
13 sources = [
14 "accelerator_registrar_impl.cc",
15 "accelerator_registrar_impl.h",
16 "non_client_frame_controller.cc",
17 "non_client_frame_controller.h",
18 "window_manager_application.cc",
19 "window_manager_application.h",
20 "window_manager_impl.cc",
21 "window_manager_impl.h",
22 ]
23
24 deps = [
25 "//ash:ash_shell_lib",
26 "//components/mus/common",
27 "//components/mus/public/cpp",
28 "//components/mus/public/interfaces",
29 "//mojo/common:common_base",
30 "//mojo/converters/geometry",
31 "//mojo/converters/input_events",
32 "//mojo/services/tracing/public/cpp",
33 "//mojo/shell/public/cpp",
34 "//skia",
35 "//ui/aura",
36 "//ui/events",
37 "//ui/gfx",
38 "//ui/gfx/geometry",
39 "//ui/mojo/init",
40 "//ui/resources",
41 "//ui/strings",
42 "//ui/views",
43 "//ui/views/mus:for_mojo_application",
44 ]
45 }
46
47 mojo_native_application("wm") {
48 output_name = "ash_wm"
49 sources = [
50 "main.cc",
51 ]
52 testonly = true
53 deps = [
54 ":lib",
55 ]
56 }
OLDNEW
« no previous file with comments | « ash/host/transformer_helper.cc ('k') | ash/mus/wm/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698