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

Side by Side Diff: services/ui/demo/BUILD.gn

Issue 2447303002: Scale client area, hit test mask and bounds by device_scale_factor. (Closed)
Patch Set: test_screen Created 4 years, 1 month 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 | services/ui/demo/mus_demo.h » ('j') | services/ui/demo/mus_demo.h » ('J')
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("//services/service_manager/public/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni") 6 import("//services/service_manager/public/service_manifest.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 source_set("lib") { 9 source_set("lib") {
10 testonly = true
11
10 sources = [ 12 sources = [
11 "bitmap_uploader.cc", 13 "bitmap_uploader.cc",
12 "bitmap_uploader.h", 14 "bitmap_uploader.h",
13 "mus_demo.cc", 15 "mus_demo.cc",
14 "mus_demo.h", 16 "mus_demo.h",
15 ] 17 ]
16 18
17 public_deps = [ 19 public_deps = [
18 "//services/service_manager/public/cpp:sources", 20 "//services/service_manager/public/cpp:sources",
19 "//skia", 21 "//skia",
20 ] 22 ]
21 23
22 deps = [ 24 deps = [
23 "//base", 25 "//base",
24 "//mojo/public/cpp/bindings", 26 "//mojo/public/cpp/bindings",
25 "//services/service_manager/public/cpp", 27 "//services/service_manager/public/cpp",
26 "//services/ui/public/cpp", 28 "//services/ui/public/cpp",
27 "//services/ui/public/cpp:internal", 29 "//services/ui/public/cpp:internal",
28 "//services/ui/public/interfaces", 30 "//services/ui/public/interfaces",
31 "//ui/display:test_support",
29 "//ui/gfx/geometry", 32 "//ui/gfx/geometry",
30 ] 33 ]
31 } 34 }
32 35
33 service("mus_demo") { 36 service("mus_demo") {
37 testonly = true
38
34 sources = [ 39 sources = [
35 "main.cc", 40 "main.cc",
36 ] 41 ]
37 42
38 deps = [ 43 deps = [
39 ":lib", 44 ":lib",
40 ] 45 ]
41 46
42 data_deps = [ 47 data_deps = [
43 ":manifest", 48 ":manifest",
(...skipping 28 matching lines...) Expand all
72 "//testing/gtest", 77 "//testing/gtest",
73 ] 78 ]
74 79
75 data_deps = [ 80 data_deps = [
76 ":mus_demo", 81 ":mus_demo",
77 ":test_manifest", 82 ":test_manifest",
78 ] 83 ]
79 } 84 }
80 85
81 group("demo") { 86 group("demo") {
87 testonly = true
88
82 deps = [ 89 deps = [
83 ":mus_demo", 90 ":mus_demo",
84 ] 91 ]
85 } 92 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/demo/mus_demo.h » ('j') | services/ui/demo/mus_demo.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698