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 component("views_examples_lib") { | 7 component("views_examples_lib") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 ] | 150 ] |
151 | 151 |
152 defines = [ "VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION" ] | 152 defines = [ "VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION" ] |
153 | 153 |
154 deps = [ | 154 deps = [ |
155 ":views_examples_with_content_lib", | 155 ":views_examples_with_content_lib", |
156 "//base", | 156 "//base", |
157 "//content", | 157 "//content", |
158 "//ui/views_content_client", | 158 "//ui/views_content_client", |
159 ] | 159 ] |
| 160 |
| 161 if (is_win) { |
| 162 configs += [ "//build/config/win:windowed" ] |
| 163 configs -= [ "//build/config/win:console" ] |
| 164 } |
160 } | 165 } |
OLD | NEW |