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