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

Side by Side Diff: ash/mus/BUILD.gn

Issue 1685313002: ash/mash: Fix launching ash as a mus-app in chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | ash/mus/shell_delegate_mus.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 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") {
(...skipping 26 matching lines...) Expand all
37 "//ui/gfx", 37 "//ui/gfx",
38 "//ui/gfx/geometry", 38 "//ui/gfx/geometry",
39 "//ui/message_center", 39 "//ui/message_center",
40 "//ui/mojo/init", 40 "//ui/mojo/init",
41 "//ui/platform_window/stub", 41 "//ui/platform_window/stub",
42 "//ui/resources", 42 "//ui/resources",
43 "//ui/strings", 43 "//ui/strings",
44 "//ui/views", 44 "//ui/views",
45 "//ui/views/mus:for_mojo_application", 45 "//ui/views/mus:for_mojo_application",
46 ] 46 ]
47
48 if (is_chromeos) {
49 deps += [
50 "//chromeos",
51 "//device/bluetooth",
52 "//ui/events/devices",
53 ]
54 }
47 } 55 }
48 56
49 mojo_native_application("mus") { 57 mojo_native_application("mus") {
50 output_name = "ash_sysui" 58 output_name = "ash_sysui"
51 sources = [ 59 sources = [
52 "main.cc", 60 "main.cc",
53 ] 61 ]
54 deps = [ 62 deps = [
55 ":lib", 63 ":lib",
56 ] 64 ]
57 } 65 }
OLDNEW
« no previous file with comments | « no previous file | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698