Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: mash/quick_launch/BUILD.gn

Issue 1560223002: Add quick launcher for launching mojo apps from within mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@launcher
Patch Set: . Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mash/example/main/main_application_delegate.cc ('k') | mash/quick_launch/quick_launch.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 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 mojo_native_application("main") { 10 mojo_native_application("quick_launch") {
11 output_name = "example_main"
12 testonly = true
13
14 sources = [ 11 sources = [
15 "main.cc", 12 "quick_launch.cc",
16 "main_application_delegate.cc",
17 "main_application_delegate.h",
18 ] 13 ]
19 14
20 deps = [ 15 deps = [
21 "//base", 16 "//base",
22 "//mojo/application/public/cpp", 17 "//mojo/application/public/cpp",
23 "//mojo/application/public/cpp:sources", 18 "//mojo/application/public/cpp:sources",
19 "//mojo/application/public/interfaces",
24 "//mojo/public/cpp/bindings", 20 "//mojo/public/cpp/bindings",
21 "//mojo/services/tracing/public/cpp",
22 "//ui/views",
23 "//ui/views/mus:for_mojo_application",
24 "//url",
25 ] 25 ]
26 26
27 resources = [ "$root_out_dir/views_mus_resources.pak" ]
28
27 data_deps = [ 29 data_deps = [
28 "//mash/shell", 30 "//components/mus",
29 "//mash/task_viewer",
30 "//mash/example/views_examples",
31 "//mash/example/window_type_launcher",
32 ] 31 ]
33 } 32 }
OLDNEW
« no previous file with comments | « mash/example/main/main_application_delegate.cc ('k') | mash/quick_launch/quick_launch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698