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

Side by Side Diff: mash/example/views_examples/BUILD.gn

Issue 2915223002: mash: Fix mash app shelf items; encapsulate ash property setup. (Closed)
Patch Set: Similar changes for other mash apps. Created 3 years, 6 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//services/service_manager/public/cpp/service.gni") 6 import("//services/service_manager/public/cpp/service.gni")
7 import("//services/service_manager/public/service_manifest.gni") 7 import("//services/service_manager/public/service_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 service("views_examples") { 11 service("views_examples") {
12 testonly = true 12 testonly = true
13 13
14 sources = [ 14 sources = [
15 "views_examples.cc", 15 "views_examples.cc",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//ash/public/cpp:ash_public_cpp",
19 "//base", 20 "//base",
20 "//mash/public/interfaces", 21 "//mash/public/interfaces",
21 "//mojo/public/cpp/bindings", 22 "//mojo/public/cpp/bindings",
22 "//services/service_manager/public/cpp", 23 "//services/service_manager/public/cpp",
23 "//services/ui/public/interfaces", 24 "//services/ui/public/interfaces",
24 "//skia", 25 "//skia",
25 "//ui/gfx", 26 "//ui/gfx",
26 "//ui/gfx/geometry", 27 "//ui/gfx/geometry",
27 "//ui/gfx/geometry/mojo", 28 "//ui/gfx/geometry/mojo",
28 "//ui/views", 29 "//ui/views",
29 "//ui/views/examples:views_examples_lib", 30 "//ui/views/examples:views_examples_lib",
30 "//ui/views/mus:for_mojo_application", 31 "//ui/views/mus:for_mojo_application",
31 ] 32 ]
32 33
33 resources = [ "$root_out_dir/views_mus_resources.pak" ] 34 resources = [ "$root_out_dir/views_mus_resources.pak" ]
34 } 35 }
35 36
36 service_manifest("manifest") { 37 service_manifest("manifest") {
37 name = "views_examples" 38 name = "views_examples"
38 source = "manifest.json" 39 source = "manifest.json"
39 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698