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 source_set("view_manager") { | 5 source_set("view_manager") { |
6 deps = [ | 6 deps = [ |
7 ":common", | 7 ":common", |
8 "//base", | 8 "//base", |
9 "//mojo/public/cpp/application", | 9 "//mojo/public/cpp/application:chromium", |
10 "//mojo/public/interfaces/application", | 10 "//mojo/public/interfaces/application", |
11 "//mojo/services/public/cpp/geometry", | 11 "//mojo/services/public/cpp/geometry", |
12 "//mojo/services/public/interfaces/geometry", | 12 "//mojo/services/public/interfaces/geometry", |
13 "//mojo/services/public/interfaces/view_manager", | 13 "//mojo/services/public/interfaces/view_manager", |
14 "//skia", | 14 "//skia", |
15 "//ui/events", | 15 "//ui/events", |
16 "//ui/gfx", | 16 "//ui/gfx", |
17 "//ui/gfx/geometry", | 17 "//ui/gfx/geometry", |
18 ] | 18 ] |
19 | 19 |
(...skipping 17 matching lines...) Expand all Loading... |
37 "view_observer.h", | 37 "view_observer.h", |
38 "window_manager_delegate.h", | 38 "window_manager_delegate.h", |
39 ] | 39 ] |
40 } | 40 } |
41 | 41 |
42 source_set("common") { | 42 source_set("common") { |
43 sources = [ | 43 sources = [ |
44 "types.h" | 44 "types.h" |
45 ] | 45 ] |
46 } | 46 } |
OLD | NEW |