| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 deps = [ | 103 deps = [ |
| 104 ":views_examples_lib", | 104 ":views_examples_lib", |
| 105 "//base", | 105 "//base", |
| 106 "//base:i18n", | 106 "//base:i18n", |
| 107 "//build/config/sanitizers:deps", | 107 "//build/config/sanitizers:deps", |
| 108 "//build/win:default_exe_manifest", | 108 "//build/win:default_exe_manifest", |
| 109 "//ui/base", | 109 "//ui/base", |
| 110 "//ui/compositor", | 110 "//ui/compositor", |
| 111 "//ui/compositor:test_support", | 111 "//ui/compositor:test_support", |
| 112 "//ui/gfx", | 112 "//ui/gfx", |
| 113 "//ui/gl", | 113 "//ui/gl/init", |
| 114 "//ui/resources:ui_test_pak", | 114 "//ui/resources:ui_test_pak", |
| 115 "//ui/views", | 115 "//ui/views", |
| 116 "//ui/views:test_support", | 116 "//ui/views:test_support", |
| 117 "//ui/wm", | 117 "//ui/wm", |
| 118 ] | 118 ] |
| 119 | 119 |
| 120 if (use_aura) { | 120 if (use_aura) { |
| 121 deps += [ "//ui/aura" ] | 121 deps += [ "//ui/aura" ] |
| 122 } | 122 } |
| 123 if (use_x11) { | 123 if (use_x11) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//content:sandbox_helper_win", | 167 "//content:sandbox_helper_win", |
| 168 "//sandbox", | 168 "//sandbox", |
| 169 "//ui/views_content_client", | 169 "//ui/views_content_client", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 if (is_win) { | 172 if (is_win) { |
| 173 configs += [ "//build/config/win:windowed" ] | 173 configs += [ "//build/config/win:windowed" ] |
| 174 configs -= [ "//build/config/win:console" ] | 174 configs -= [ "//build/config/win:console" ] |
| 175 } | 175 } |
| 176 } | 176 } |
| OLD | NEW |