| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| 11 sources = [ | 11 sources = [ |
| 12 "shelf_delegate_mus.cc", | 12 "shelf_delegate_mus.cc", |
| 13 "shelf_delegate_mus.h", | 13 "shelf_delegate_mus.h", |
| 14 "shell_delegate_mus.cc", | 14 "shell_delegate_mus.cc", |
| 15 "shell_delegate_mus.h", | 15 "shell_delegate_mus.h", |
| 16 "stub_context_factory.cc", | 16 "stub_context_factory.cc", |
| 17 "stub_context_factory.h", | 17 "stub_context_factory.h", |
| 18 "sysui_application.cc", | 18 "sysui_application.cc", |
| 19 "sysui_application.h", | 19 "sysui_application.h", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 "//ash", | 23 "//ash", |
| 24 "//cc", |
| 25 "//cc/surfaces", |
| 24 "//components/mus/common", | 26 "//components/mus/common", |
| 25 "//components/mus/public/cpp", | 27 "//components/mus/public/cpp", |
| 26 "//components/mus/public/interfaces", | 28 "//components/mus/public/interfaces", |
| 27 "//components/user_manager", | 29 "//components/user_manager", |
| 28 "//mash/wm/public/interfaces", | 30 "//mash/wm/public/interfaces", |
| 29 "//mojo/common:common_base", | 31 "//mojo/common:common_base", |
| 30 "//mojo/converters/geometry", | 32 "//mojo/converters/geometry", |
| 31 "//mojo/converters/input_events", | 33 "//mojo/converters/input_events", |
| 32 "//mojo/services/tracing/public/cpp", | 34 "//mojo/services/tracing/public/cpp", |
| 33 "//mojo/shell/public/cpp", | 35 "//mojo/shell/public/cpp", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 46 ] | 48 ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 mojo_native_application("mus") { | 51 mojo_native_application("mus") { |
| 50 output_name = "ash_sysui" | 52 output_name = "ash_sysui" |
| 51 sources = [ | 53 sources = [ |
| 52 "main.cc", | 54 "main.cc", |
| 53 ] | 55 ] |
| 54 deps = [ | 56 deps = [ |
| 55 ":lib", | 57 ":lib", |
| 58 "//mojo/shell/public/cpp", |
| 56 ] | 59 ] |
| 57 } | 60 } |
| OLD | NEW |