| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 executable("window_type_launcher") { | 11 executable("window_type_launcher") { |
| 12 output_name = "window_type_launcher_exe" | 12 output_name = "window_type_launcher_exe" |
| 13 testonly = true | 13 testonly = true |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "main.cc", | 16 "main.cc", |
| 17 "window_type_launcher.cc", | 17 "window_type_launcher.cc", |
| 18 "window_type_launcher.h", | 18 "window_type_launcher.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 ":window_type_launcher_resources", | 22 ":window_type_launcher_resources", |
| 23 "//base", | 23 "//base", |
| 24 "//base:base_static", | 24 "//base:base_static", |
| 25 "//build/config/sanitizers:deps", | 25 "//build/config/sanitizers:deps", |
| 26 "//build/win:default_exe_manifest", |
| 26 "//components/mus/public/interfaces", | 27 "//components/mus/public/interfaces", |
| 27 "//mash/public/interfaces", | 28 "//mash/public/interfaces", |
| 28 "//mash/session/public/interfaces", | 29 "//mash/session/public/interfaces", |
| 29 "//mojo/common:common_base", | 30 "//mojo/common:common_base", |
| 30 "//mojo/converters/geometry", | 31 "//mojo/converters/geometry", |
| 31 "//mojo/edk/system", | 32 "//mojo/edk/system", |
| 32 "//mojo/message_pump", | 33 "//mojo/message_pump", |
| 33 "//mojo/platform_handle:platform_handle_impl", | 34 "//mojo/platform_handle:platform_handle_impl", |
| 34 "//mojo/public/cpp/bindings", | 35 "//mojo/public/cpp/bindings", |
| 35 "//services/shell/public/cpp", | 36 "//services/shell/public/cpp", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 60 deps = [ | 61 deps = [ |
| 61 "//ui/views/mus:resources", | 62 "//ui/views/mus:resources", |
| 62 ] | 63 ] |
| 63 } | 64 } |
| 64 | 65 |
| 65 mojo_application_manifest("manifest") { | 66 mojo_application_manifest("manifest") { |
| 66 type = "exe" | 67 type = "exe" |
| 67 application_name = "window_type_launcher_exe" | 68 application_name = "window_type_launcher_exe" |
| 68 source = "manifest.json" | 69 source = "manifest.json" |
| 69 } | 70 } |
| OLD | NEW |