OLD | NEW |
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 | 6 |
7 assert(use_aura) | 7 assert(use_aura) |
8 | 8 |
9 # GYP version mojo/mojo_examples.gypi:mojo_aura_demo | 9 # GYP version mojo/mojo_examples.gypi:mojo_aura_demo |
10 shared_library("mojo_aura_demo") { | 10 shared_library("mojo_aura_demo") { |
11 output_name = "mojo_aura_demo" | 11 output_name = "mojo_aura_demo" |
12 | 12 |
13 sources = [ | 13 sources = [ |
14 "aura_demo.cc" | 14 "aura_demo.cc" |
15 ] | 15 ] |
16 | 16 |
17 deps = [ | 17 deps = [ |
18 "//base", | 18 "//base", |
19 "//cc", | 19 "//cc", |
20 "//ui/aura", | 20 "//ui/aura", |
21 "//ui/base", | 21 "//ui/base", |
22 "//ui/compositor", | 22 "//ui/compositor", |
23 "//ui/gfx", | 23 "//ui/gfx", |
24 "//ui/gfx/geometry", | 24 "//ui/gfx/geometry", |
25 "//mojo/application", | 25 "//mojo/application", |
26 "//mojo/common", | 26 "//mojo/common", |
| 27 "//mojo/converters", |
27 "//mojo/aura", | 28 "//mojo/aura", |
28 "//mojo/public/c/system:for_shared_library", | 29 "//mojo/public/c/system:for_shared_library", |
29 "//mojo/services/public/interfaces/geometry", | 30 "//mojo/services/public/interfaces/geometry", |
30 "//mojo/services/public/cpp/geometry", | |
31 "//mojo/services/public/cpp/view_manager", | 31 "//mojo/services/public/cpp/view_manager", |
32 ] | 32 ] |
33 | 33 |
34 datadeps = [ ":init" ] | 34 datadeps = [ ":init" ] |
35 } | 35 } |
36 | 36 |
37 # GYP version mojo/mojo_examples.gypi:mojo_aura_demo_init | 37 # GYP version mojo/mojo_examples.gypi:mojo_aura_demo_init |
38 shared_library("init") { | 38 shared_library("init") { |
39 output_name = "mojo_aura_demo_init" | 39 output_name = "mojo_aura_demo_init" |
40 | 40 |
41 sources = [ | 41 sources = [ |
42 "view_manager_init.cc", | 42 "view_manager_init.cc", |
43 ] | 43 ] |
44 | 44 |
45 deps = [ | 45 deps = [ |
46 "//base", | 46 "//base", |
47 "//mojo/application", | 47 "//mojo/application", |
48 "//mojo/public/c/system:for_shared_library", | 48 "//mojo/public/c/system:for_shared_library", |
49 "//mojo/services/public/interfaces/view_manager", | 49 "//mojo/services/public/interfaces/view_manager", |
50 ] | 50 ] |
51 } | 51 } |
OLD | NEW |