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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 # This is the public target. It contains only the public headers. The | 7 # This is the public target. It contains only the public headers. The |
8 # implementation (and private haders) are in 'internal'. | 8 # implementation (and private haders) are in 'internal'. |
9 source_set("cpp") { | 9 source_set("cpp") { |
10 sources = [ | 10 sources = [ |
11 "input_event_handler.h", | 11 "input_event_handler.h", |
12 "property_type_converters.h", | 12 "property_type_converters.h", |
13 "raster_thread_helper.h", | 13 "raster_thread_helper.h", |
14 "scoped_window_ptr.h", | 14 "scoped_window_ptr.h", |
15 "surface_id_handler.h", | |
16 "window.h", | 15 "window.h", |
17 "window_compositor_frame_sink.h", | 16 "window_compositor_frame_sink.h", |
18 "window_manager_delegate.h", | 17 "window_manager_delegate.h", |
19 "window_observer.h", | 18 "window_observer.h", |
20 "window_property.h", | 19 "window_property.h", |
21 "window_tracker.h", | 20 "window_tracker.h", |
22 "window_tree_client.h", | 21 "window_tree_client.h", |
23 "window_tree_client_delegate.h", | 22 "window_tree_client_delegate.h", |
24 "window_tree_client_observer.h", | 23 "window_tree_client_observer.h", |
25 "window_tree_host_factory.h", | 24 "window_tree_host_factory.h", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 data_deps = [ | 123 data_deps = [ |
125 "//services/ui", | 124 "//services/ui", |
126 ] | 125 ] |
127 | 126 |
128 defines = [ "GL_GLEXT_PROTOTYPES" ] | 127 defines = [ "GL_GLEXT_PROTOTYPES" ] |
129 | 128 |
130 if (use_ozone) { | 129 if (use_ozone) { |
131 deps += [ "//ui/ozone" ] | 130 deps += [ "//ui/ozone" ] |
132 } | 131 } |
133 } | 132 } |
OLD | NEW |