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("//mojo/system.gni") | |
6 | |
7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib | 5 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
8 source_set("view_manager") { | 6 source_set("view_manager") { |
9 sources = [ | 7 sources = [ |
10 "lib/bitmap_uploader.cc", | 8 "lib/bitmap_uploader.cc", |
11 "lib/bitmap_uploader.h", | 9 "lib/bitmap_uploader.h", |
12 "lib/view.cc", | 10 "lib/view.cc", |
13 "lib/view_manager_client_factory.cc", | 11 "lib/view_manager_client_factory.cc", |
14 "lib/view_manager_client_impl.cc", | 12 "lib/view_manager_client_impl.cc", |
15 "lib/view_manager_client_impl.h", | 13 "lib/view_manager_client_impl.h", |
16 "lib/view_observer.cc", | 14 "lib/view_observer.cc", |
17 "lib/view_private.cc", | 15 "lib/view_private.cc", |
18 "lib/view_private.h", | 16 "lib/view_private.h", |
19 "view.h", | 17 "view.h", |
20 "view_manager.h", | 18 "view_manager.h", |
21 "view_manager_client_factory.h", | 19 "view_manager_client_factory.h", |
22 "view_manager_delegate.h", | 20 "view_manager_delegate.h", |
23 "view_observer.h", | 21 "view_observer.h", |
24 "window_manager_delegate.h", | 22 "window_manager_delegate.h", |
25 ] | 23 ] |
26 | 24 |
27 deps = [ | 25 deps = [ |
28 ":common", | 26 ":common", |
29 "//base", | 27 "//base", |
30 "//cc/surfaces", | 28 "//cc/surfaces", |
31 "//gpu", | 29 "//gpu", |
32 "//mojo/application", | 30 "//mojo/application", |
| 31 "//mojo/public/gles2:for_shared_library", |
33 "//mojo/public/interfaces/application", | 32 "//mojo/public/interfaces/application", |
34 "//mojo/services/public/cpp/geometry", | 33 "//mojo/services/public/cpp/geometry", |
35 "//mojo/services/public/cpp/surfaces", | 34 "//mojo/services/public/cpp/surfaces", |
36 "//mojo/services/public/interfaces/geometry", | 35 "//mojo/services/public/interfaces/geometry", |
37 "//mojo/services/public/interfaces/gpu", | 36 "//mojo/services/public/interfaces/gpu", |
38 "//mojo/services/public/interfaces/view_manager", | 37 "//mojo/services/public/interfaces/view_manager", |
39 "//mojo/services/public/interfaces/window_manager", | 38 "//mojo/services/public/interfaces/window_manager", |
40 "//skia", | 39 "//skia", |
41 "//ui/events", | 40 "//ui/events", |
42 "//ui/gfx", | 41 "//ui/gfx", |
43 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
44 ] + mojo_gles2_for_shared_library | 43 ] |
45 | 44 |
46 forward_dependent_configs_from = [ "//skia" ] | 45 forward_dependent_configs_from = [ "//skia" ] |
47 } | 46 } |
48 | 47 |
49 source_set("common") { | 48 source_set("common") { |
50 sources = [ | 49 sources = [ |
51 "types.h" | 50 "types.h" |
52 ] | 51 ] |
53 } | 52 } |
OLD | NEW |