OLD | NEW |
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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 mojo_native_application("mus_demo") { | 9 mojo_native_application("mus_demo") { |
10 sources = [ | 10 sources = [ |
11 "main.cc", | 11 "main.cc", |
12 "mus_demo.cc", | 12 "mus_demo.cc", |
13 "mus_demo.h", | 13 "mus_demo.h", |
14 ] | 14 ] |
15 | 15 |
16 deps = [ | 16 deps = [ |
17 "//base", | 17 "//base", |
18 "//components/bitmap_uploader", | |
19 "//mojo/public/cpp/bindings", | 18 "//mojo/public/cpp/bindings", |
20 "//services/shell/public/cpp", | 19 "//services/shell/public/cpp", |
21 "//services/shell/public/cpp:sources", | 20 "//services/shell/public/cpp:sources", |
22 "//services/ui/public/cpp", | 21 "//services/ui/public/cpp", |
23 "//services/ui/public/interfaces", | 22 "//services/ui/public/interfaces", |
24 "//skia", | 23 "//skia", |
25 "//ui/gfx/geometry", | 24 "//ui/gfx/geometry", |
26 ] | 25 ] |
27 | 26 |
28 data_deps = [ | 27 data_deps = [ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 data_deps = [ | 61 data_deps = [ |
63 ":test_manifest", | 62 ":test_manifest", |
64 ] | 63 ] |
65 } | 64 } |
66 | 65 |
67 group("demo") { | 66 group("demo") { |
68 deps = [ | 67 deps = [ |
69 ":mus_demo", | 68 ":mus_demo", |
70 ] | 69 ] |
71 } | 70 } |
OLD | NEW |