OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") | |
6 | |
7 mojo_sdk_source_set("cpp") { | |
8 restrict_external_deps = false | |
9 sources = [ | |
10 "args.h", | |
11 "lib/args.cc", | |
12 "lib/scoped_view_ptr.cc", | |
13 "lib/view.cc", | |
14 "lib/view_observer.cc", | |
15 "lib/view_private.cc", | |
16 "lib/view_private.h", | |
17 "lib/view_surface.cc", | |
18 "lib/view_tree_client_impl.cc", | |
19 "lib/view_tree_client_impl.h", | |
20 "lib/view_tree_delegate.cc", | |
21 "lib/view_tree_host_factory.cc", | |
22 "scoped_view_ptr.h", | |
23 "view.h", | |
24 "view_observer.h", | |
25 "view_property.h", | |
26 "view_surface.h", | |
27 "view_surface_client.h", | |
28 "view_tracker.cc", | |
29 "view_tracker.h", | |
30 "view_tree_connection.h", | |
31 "view_tree_delegate.h", | |
32 "view_tree_host_factory.h", | |
33 ] | |
34 | |
35 public_deps = [ | |
36 ":common", | |
37 "../interfaces", | |
38 "//mojo/services/network/public/interfaces", | |
39 ] | |
40 | |
41 deps = [ | |
42 "//mojo/application/public/cpp", | |
43 "//mojo/application/public/interfaces", | |
44 "//mojo/converters/surfaces", | |
45 "//ui/mojo/events:interfaces", | |
46 "//ui/mojo/geometry:interfaces", | |
47 "//base", | |
48 ] | |
49 | |
50 mojo_sdk_deps = [ | |
51 "mojo/public/c/gles2:headers", | |
52 "mojo/public/cpp/bindings:bindings", | |
53 "mojo/public/cpp/system", | |
54 ] | |
55 } | |
56 | |
57 source_set("common") { | |
58 sources = [ | |
59 "keys.cc", | |
60 "keys.h", | |
61 "types.h", | |
62 "util.h", | |
63 ] | |
64 } | |
OLD | NEW |