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

Side by Side Diff: mash/screenlock/BUILD.gn

Issue 1637113003: Add simplistic screenlock application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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 | « mash/example/window_type_launcher/window_type_launcher.cc ('k') | mash/screenlock/main.cc » ('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 mojo_native_application("screenlock") {
11 sources = [
12 "main.cc",
13 "screenlock.cc",
14 "screenlock.h",
15 ]
16
17 deps = [
18 "//base",
19 "//components/mus/public/cpp",
20 "//mash/screenlock/public/interfaces",
21 "//mash/shell/public/interfaces",
22 "//mash/wm/public/interfaces",
23 "//mojo/common",
24 "//mojo/public/cpp/bindings",
25 "//mojo/services/tracing/public/cpp",
26 "//mojo/shell/public/cpp",
27 "//mojo/shell/public/cpp:sources",
28 "//ui/views",
29 "//ui/views/mus:for_mojo_application",
30 ]
31
32 resources = [ "$root_out_dir/views_mus_resources.pak" ]
33
34 data_deps = [
35 "//components/mus",
36 ]
37 }
OLDNEW
« no previous file with comments | « mash/example/window_type_launcher/window_type_launcher.cc ('k') | mash/screenlock/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698