| Index: ash/mus/sysui/BUILD.gn
|
| diff --git a/mash/example/views_examples/BUILD.gn b/ash/mus/sysui/BUILD.gn
|
| similarity index 51%
|
| copy from mash/example/views_examples/BUILD.gn
|
| copy to ash/mus/sysui/BUILD.gn
|
| index 675840002d5fc060e627faca0b7368a8fcd5fb6f..e4e1feef29e21ffb23773a3de82d43936c9aa02f 100644
|
| --- a/mash/example/views_examples/BUILD.gn
|
| +++ b/ash/mus/sysui/BUILD.gn
|
| @@ -1,4 +1,4 @@
|
| -# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# 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.
|
|
|
| @@ -7,34 +7,45 @@ import("//mojo/public/mojo_application.gni")
|
| import("//mojo/public/tools/bindings/mojom.gni")
|
| import("//tools/grit/repack.gni")
|
|
|
| -mojo_native_application("views_examples") {
|
| +source_set("lib") {
|
| testonly = true
|
|
|
| sources = [
|
| - "main.cc",
|
| - "views_examples_application_delegate.cc",
|
| - "views_examples_application_delegate.h",
|
| + "sysui_application.cc",
|
| + "sysui_application.h",
|
| ]
|
|
|
| deps = [
|
| - "//base",
|
| + "//ash:ash_shell_lib",
|
| + "//components/mus/common",
|
| + "//components/mus/public/cpp",
|
| "//components/mus/public/interfaces",
|
| + "//mash/wm/public/interfaces",
|
| + "//mojo/common:common_base",
|
| "//mojo/converters/geometry",
|
| - "//mojo/public/cpp/bindings",
|
| + "//mojo/converters/input_events",
|
| "//mojo/services/tracing/public/cpp",
|
| "//mojo/shell/public/cpp",
|
| - "//mojo/shell/public/cpp:sources",
|
| "//skia",
|
| + "//ui/aura",
|
| + "//ui/events",
|
| "//ui/gfx",
|
| "//ui/gfx/geometry",
|
| + "//ui/mojo/init",
|
| + "//ui/resources",
|
| + "//ui/strings",
|
| "//ui/views",
|
| - "//ui/views/examples:views_examples_lib",
|
| "//ui/views/mus:for_mojo_application",
|
| ]
|
| +}
|
|
|
| - resources = [ "$root_out_dir/views_mus_resources.pak" ]
|
| -
|
| - data_deps = [
|
| - "//components/mus",
|
| +mojo_native_application("sysui") {
|
| + output_name = "ash_sysui"
|
| + sources = [
|
| + "main.cc",
|
| + ]
|
| + testonly = true
|
| + deps = [
|
| + ":lib",
|
| ]
|
| }
|
|
|