| 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 = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "window_tracker.h", | 24 "window_tracker.h", |
| 25 "window_tree_client.h", | 25 "window_tree_client.h", |
| 26 "window_tree_client_delegate.h", | 26 "window_tree_client_delegate.h", |
| 27 "window_tree_client_observer.h", | 27 "window_tree_client_observer.h", |
| 28 "window_tree_host_factory.h", | 28 "window_tree_host_factory.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 public_deps = [ | 31 public_deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//cc", | 33 "//cc", |
| 34 "//cc/animation", |
| 34 "//cc/surfaces", | 35 "//cc/surfaces", |
| 35 "//cc/surfaces:surface_id", | 36 "//cc/surfaces:surface_id", |
| 36 "//gpu/command_buffer/client", | 37 "//gpu/command_buffer/client", |
| 37 "//gpu/command_buffer/client:gles2_implementation", | 38 "//gpu/command_buffer/client:gles2_implementation", |
| 38 "//gpu/command_buffer/common", | 39 "//gpu/command_buffer/common", |
| 39 "//mojo/public/cpp/bindings", | 40 "//mojo/public/cpp/bindings", |
| 40 "//mojo/public/cpp/system", | 41 "//mojo/public/cpp/system", |
| 41 "//services/service_manager/public/interfaces", | 42 "//services/service_manager/public/interfaces", |
| 42 "//services/ui/common:mus_common", | 43 "//services/ui/common:mus_common", |
| 43 "//services/ui/public/interfaces", | 44 "//services/ui/public/interfaces", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "window_private.cc", | 115 "window_private.cc", |
| 115 "window_tree_client.cc", | 116 "window_tree_client.cc", |
| 116 "window_tree_client_delegate.cc", | 117 "window_tree_client_delegate.cc", |
| 117 "window_tree_host_factory.cc", | 118 "window_tree_host_factory.cc", |
| 118 ] | 119 ] |
| 119 | 120 |
| 120 deps = [ | 121 deps = [ |
| 121 ":internal_or_test", | 122 ":internal_or_test", |
| 122 "//base", | 123 "//base", |
| 123 "//cc", | 124 "//cc", |
| 125 "//cc/animation", |
| 124 "//cc/surfaces", | 126 "//cc/surfaces", |
| 125 "//cc/surfaces:surface_id", | 127 "//cc/surfaces:surface_id", |
| 126 "//gpu/command_buffer/client", | 128 "//gpu/command_buffer/client", |
| 127 "//gpu/command_buffer/client:gles2_cmd_helper", | 129 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 128 "//gpu/command_buffer/client:gles2_implementation", | 130 "//gpu/command_buffer/client:gles2_implementation", |
| 129 "//gpu/command_buffer/client:gles2_interface", | 131 "//gpu/command_buffer/client:gles2_interface", |
| 130 "//gpu/command_buffer/common", | 132 "//gpu/command_buffer/common", |
| 131 "//gpu/ipc/client", | 133 "//gpu/ipc/client", |
| 132 "//mojo/public/cpp/bindings", | 134 "//mojo/public/cpp/bindings", |
| 133 "//mojo/public/cpp/system", | 135 "//mojo/public/cpp/system", |
| 134 "//services/service_manager/public/cpp", | 136 "//services/service_manager/public/cpp", |
| 135 "//services/service_manager/public/interfaces", | 137 "//services/service_manager/public/interfaces", |
| 136 "//services/ui/common:mus_common", | 138 "//services/ui/common:mus_common", |
| 137 "//services/ui/public/interfaces", | 139 "//services/ui/public/interfaces", |
| 138 "//ui/display", | 140 "//ui/display", |
| 139 "//ui/events", | 141 "//ui/events", |
| 140 "//ui/gfx/geometry", | 142 "//ui/gfx/geometry", |
| 141 ] | 143 ] |
| 142 | 144 |
| 143 data_deps = [ | 145 data_deps = [ |
| 144 "//services/ui", | 146 "//services/ui", |
| 145 ] | 147 ] |
| 146 | 148 |
| 147 defines = [ "GL_GLEXT_PROTOTYPES" ] | 149 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 148 | 150 |
| 149 if (use_ozone) { | 151 if (use_ozone) { |
| 150 deps += [ "//ui/ozone" ] | 152 deps += [ "//ui/ozone" ] |
| 151 } | 153 } |
| 152 } | 154 } |
| OLD | NEW |