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", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "//base", | 27 "//base", |
28 "//cc/surfaces", | 28 "//cc/surfaces", |
29 "//gpu", | 29 "//gpu", |
30 "//mojo/application", | 30 "//mojo/application", |
31 "//mojo/public/gles2:for_shared_library", | 31 "//mojo/public/gles2:for_shared_library", |
32 "//mojo/public/interfaces/application", | 32 "//mojo/public/interfaces/application", |
33 "//mojo/services/public/cpp/geometry", | 33 "//mojo/services/public/cpp/geometry", |
34 "//mojo/services/public/cpp/surfaces", | 34 "//mojo/services/public/cpp/surfaces", |
35 "//mojo/services/public/interfaces/geometry", | 35 "//mojo/services/public/interfaces/geometry", |
36 "//mojo/services/public/interfaces/gpu", | 36 "//mojo/services/public/interfaces/gpu", |
| 37 "//mojo/services/public/interfaces/native_viewport", |
| 38 "//mojo/services/public/interfaces/surfaces", |
37 "//mojo/services/public/interfaces/view_manager", | 39 "//mojo/services/public/interfaces/view_manager", |
38 "//mojo/services/public/interfaces/window_manager", | 40 "//mojo/services/public/interfaces/window_manager", |
39 "//skia", | 41 "//skia", |
40 "//ui/events", | 42 "//ui/events", |
41 "//ui/gfx", | 43 "//ui/gfx", |
42 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
43 ] | 45 ] |
44 | 46 |
45 forward_dependent_configs_from = [ "//skia" ] | 47 forward_dependent_configs_from = [ "//skia" ] |
46 } | 48 } |
47 | 49 |
48 source_set("common") { | 50 source_set("common") { |
49 sources = [ | 51 sources = [ |
50 "types.h" | 52 "ids.h", |
| 53 "types.h", |
51 ] | 54 ] |
52 } | 55 } |
OLD | NEW |