| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 ":internal", | 66 ":internal", |
| 67 ":internal_or_test", | 67 ":internal_or_test", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| 70 | 70 |
| 71 # This target is for use internally and by tests. | 71 # This target is for use internally and by tests. |
| 72 source_set("internal_or_test") { | 72 source_set("internal_or_test") { |
| 73 visibility = [ | 73 visibility = [ |
| 74 "./*", | 74 "./*", |
| 75 "//services/ui/ws:mus_ws_unittests", | 75 "//services/ui/ws:mus_ws_unittests", |
| 76 "//ui/views/mus:views_mus_unittests", |
| 76 ] | 77 ] |
| 77 | 78 |
| 78 sources = [ | 79 sources = [ |
| 79 "window_private.h", | 80 "window_private.h", |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 deps = [ | 83 deps = [ |
| 83 "//base", | 84 "//base", |
| 84 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
| 85 ] | 86 ] |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 data_deps = [ | 150 data_deps = [ |
| 150 "//services/ui", | 151 "//services/ui", |
| 151 ] | 152 ] |
| 152 | 153 |
| 153 defines = [ "GL_GLEXT_PROTOTYPES" ] | 154 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 154 | 155 |
| 155 if (use_ozone) { | 156 if (use_ozone) { |
| 156 deps += [ "//ui/ozone" ] | 157 deps += [ "//ui/ozone" ] |
| 157 } | 158 } |
| 158 } | 159 } |
| OLD | NEW |