| 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 14 matching lines...) Expand all Loading... |
| 25 "examples_window.cc", | 25 "examples_window.cc", |
| 26 "examples_window.h", | 26 "examples_window.h", |
| 27 "label_example.cc", | 27 "label_example.cc", |
| 28 "label_example.h", | 28 "label_example.h", |
| 29 "link_example.cc", | 29 "link_example.cc", |
| 30 "link_example.h", | 30 "link_example.h", |
| 31 "menu_example.cc", | 31 "menu_example.cc", |
| 32 "menu_example.h", | 32 "menu_example.h", |
| 33 "message_box_example.cc", | 33 "message_box_example.cc", |
| 34 "message_box_example.h", | 34 "message_box_example.h", |
| 35 "multiline_elision_example.cc", |
| 36 "multiline_elision_example.h", |
| 35 "multiline_example.cc", | 37 "multiline_example.cc", |
| 36 "multiline_example.h", | 38 "multiline_example.h", |
| 37 "progress_bar_example.cc", | 39 "progress_bar_example.cc", |
| 38 "progress_bar_example.h", | 40 "progress_bar_example.h", |
| 39 "radio_button_example.cc", | 41 "radio_button_example.cc", |
| 40 "radio_button_example.h", | 42 "radio_button_example.h", |
| 41 "scroll_view_example.cc", | 43 "scroll_view_example.cc", |
| 42 "scroll_view_example.h", | 44 "scroll_view_example.h", |
| 43 "single_split_view_example.cc", | 45 "single_split_view_example.cc", |
| 44 "single_split_view_example.h", | 46 "single_split_view_example.h", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//content:sandbox_helper_win", | 169 "//content:sandbox_helper_win", |
| 168 "//sandbox", | 170 "//sandbox", |
| 169 "//ui/views_content_client", | 171 "//ui/views_content_client", |
| 170 ] | 172 ] |
| 171 | 173 |
| 172 if (is_win) { | 174 if (is_win) { |
| 173 configs += [ "//build/config/win:windowed" ] | 175 configs += [ "//build/config/win:windowed" ] |
| 174 configs -= [ "//build/config/win:console" ] | 176 configs -= [ "//build/config/win:console" ] |
| 175 } | 177 } |
| 176 } | 178 } |
| OLD | NEW |