| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 executable("views_examples_exe") { | 96 executable("views_examples_exe") { |
| 97 testonly = true | 97 testonly = true |
| 98 | 98 |
| 99 sources = [ | 99 sources = [ |
| 100 "examples_main.cc", | 100 "examples_main.cc", |
| 101 ] | 101 ] |
| 102 | 102 |
| 103 deps = [ | 103 deps = [ |
| 104 ":views_examples_lib", | 104 ":views_examples_lib", |
| 105 "//base", | 105 "//base", |
| 106 "//base:i18n", |
| 106 "//build/config/sanitizers:deps", | 107 "//build/config/sanitizers:deps", |
| 107 "//base:i18n", | |
| 108 "//ui/base", | 108 "//ui/base", |
| 109 "//ui/compositor", | 109 "//ui/compositor", |
| 110 "//ui/compositor:test_support", | 110 "//ui/compositor:test_support", |
| 111 "//ui/gfx", | 111 "//ui/gfx", |
| 112 "//ui/gl", | 112 "//ui/gl", |
| 113 "//ui/resources:ui_test_pak", | 113 "//ui/resources:ui_test_pak", |
| 114 "//ui/views", | 114 "//ui/views", |
| 115 "//ui/views:test_support", | 115 "//ui/views:test_support", |
| 116 "//ui/wm", | 116 "//ui/wm", |
| 117 ] | 117 ] |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//content", | 164 "//content", |
| 165 "//content:sandbox_helper_win", | 165 "//content:sandbox_helper_win", |
| 166 "//ui/views_content_client", | 166 "//ui/views_content_client", |
| 167 ] | 167 ] |
| 168 | 168 |
| 169 if (is_win) { | 169 if (is_win) { |
| 170 configs += [ "//build/config/win:windowed" ] | 170 configs += [ "//build/config/win:windowed" ] |
| 171 configs -= [ "//build/config/win:console" ] | 171 configs -= [ "//build/config/win:console" ] |
| 172 } | 172 } |
| 173 } | 173 } |
| OLD | NEW |