| Index: ash/mus/sysui/BUILD.gn
|
| diff --git a/ash/mus/sysui/BUILD.gn b/ash/mus/sysui/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6933211274c8d046940c8a4c6923b12fe105618e
|
| --- /dev/null
|
| +++ b/ash/mus/sysui/BUILD.gn
|
| @@ -0,0 +1,53 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//build/config/ui.gni")
|
| +import("//mojo/public/mojo_application.gni")
|
| +import("//mojo/public/tools/bindings/mojom.gni")
|
| +import("//tools/grit/repack.gni")
|
| +
|
| +source_set("lib") {
|
| + sources = [
|
| + "shell_delegate_mus.cc",
|
| + "shell_delegate_mus.h",
|
| + "stub_context_factory.cc",
|
| + "stub_context_factory.h",
|
| + "sysui_application.cc",
|
| + "sysui_application.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//ash",
|
| + "//components/mus/common",
|
| + "//components/mus/public/cpp",
|
| + "//components/mus/public/interfaces",
|
| + "//mash/wm/public/interfaces",
|
| + "//mojo/common:common_base",
|
| + "//mojo/converters/geometry",
|
| + "//mojo/converters/input_events",
|
| + "//mojo/services/tracing/public/cpp",
|
| + "//mojo/shell/public/cpp",
|
| + "//skia",
|
| + "//ui/aura",
|
| + "//ui/events",
|
| + "//ui/gfx",
|
| + "//ui/gfx/geometry",
|
| + "//ui/mojo/init",
|
| + "//ui/platform_window/stub",
|
| + "//ui/resources",
|
| + "//ui/strings",
|
| + "//ui/views",
|
| + "//ui/views/mus:for_mojo_application",
|
| + ]
|
| +}
|
| +
|
| +mojo_native_application("sysui") {
|
| + output_name = "ash_sysui"
|
| + sources = [
|
| + "main.cc",
|
| + ]
|
| + deps = [
|
| + ":lib",
|
| + ]
|
| +}
|
|
|