OLD | NEW |
(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 } |
OLD | NEW |