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/view.cc", | 8 "lib/view.cc", |
9 "lib/view_manager_client_factory.cc", | 9 "lib/view_manager_client_factory.cc", |
10 "lib/view_manager_client_impl.cc", | 10 "lib/view_manager_client_impl.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
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 public_deps = [ |
26 ":common", | 26 ":common", |
27 ] | 27 ] |
28 deps = [ | 28 deps = [ |
29 "//base", | 29 "//base", |
30 "//mojo/application", | 30 "//mojo/application", |
| 31 "//mojo/converters", |
31 "//mojo/public/c/gles2", | 32 "//mojo/public/c/gles2", |
32 "//mojo/public/cpp/bindings:bindings", | 33 "//mojo/public/cpp/bindings:bindings", |
33 "//mojo/public/interfaces/application", | 34 "//mojo/public/interfaces/application", |
34 "//mojo/services/public/cpp/geometry", | |
35 "//mojo/services/public/cpp/surfaces", | |
36 "//mojo/services/public/interfaces/geometry", | 35 "//mojo/services/public/interfaces/geometry", |
37 "//mojo/services/public/interfaces/input_events:input_events", | 36 "//mojo/services/public/interfaces/input_events:input_events", |
38 "//mojo/services/public/interfaces/surfaces:surface_id", | 37 "//mojo/services/public/interfaces/surfaces:surface_id", |
39 "//mojo/services/public/interfaces/view_manager", | 38 "//mojo/services/public/interfaces/view_manager", |
40 "//mojo/services/public/interfaces/window_manager", | 39 "//mojo/services/public/interfaces/window_manager", |
41 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
42 ] | 41 ] |
43 } | 42 } |
44 | 43 |
45 source_set("common") { | 44 source_set("common") { |
46 sources = [ | 45 sources = [ |
47 "ids.h", | 46 "ids.h", |
48 "types.h", | 47 "types.h", |
49 ] | 48 ] |
50 public_deps = [ | 49 public_deps = [ |
51 "//base", | 50 "//base", |
52 ] | 51 ] |
53 } | 52 } |
OLD | NEW |