| 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 = [ |
| 11 "bubble_example.cc", | 11 "bubble_example.cc", |
| 12 "bubble_example.h", | 12 "bubble_example.h", |
| 13 "button_example.cc", | 13 "button_example.cc", |
| 14 "button_example.h", | 14 "button_example.h", |
| 15 "checkbox_example.cc", | 15 "checkbox_example.cc", |
| 16 "checkbox_example.h", | 16 "checkbox_example.h", |
| 17 "combobox_example.cc", | 17 "combobox_example.cc", |
| 18 "combobox_example.h", | 18 "combobox_example.h", |
| 19 "double_split_view_example.cc", | |
| 20 "double_split_view_example.h", | |
| 21 "example_base.cc", | 19 "example_base.cc", |
| 22 "example_base.h", | 20 "example_base.h", |
| 23 "example_combobox_model.cc", | 21 "example_combobox_model.cc", |
| 24 "example_combobox_model.h", | 22 "example_combobox_model.h", |
| 25 "examples_window.cc", | 23 "examples_window.cc", |
| 26 "examples_window.h", | 24 "examples_window.h", |
| 27 "label_example.cc", | 25 "label_example.cc", |
| 28 "label_example.h", | 26 "label_example.h", |
| 29 "link_example.cc", | 27 "link_example.cc", |
| 30 "link_example.h", | 28 "link_example.h", |
| 31 "menu_example.cc", | 29 "menu_example.cc", |
| 32 "menu_example.h", | 30 "menu_example.h", |
| 33 "message_box_example.cc", | 31 "message_box_example.cc", |
| 34 "message_box_example.h", | 32 "message_box_example.h", |
| 35 "multiline_example.cc", | 33 "multiline_example.cc", |
| 36 "multiline_example.h", | 34 "multiline_example.h", |
| 37 "progress_bar_example.cc", | 35 "progress_bar_example.cc", |
| 38 "progress_bar_example.h", | 36 "progress_bar_example.h", |
| 39 "radio_button_example.cc", | 37 "radio_button_example.cc", |
| 40 "radio_button_example.h", | 38 "radio_button_example.h", |
| 41 "scroll_view_example.cc", | 39 "scroll_view_example.cc", |
| 42 "scroll_view_example.h", | 40 "scroll_view_example.h", |
| 43 "single_split_view_example.cc", | |
| 44 "single_split_view_example.h", | |
| 45 "slider_example.cc", | 41 "slider_example.cc", |
| 46 "slider_example.h", | 42 "slider_example.h", |
| 47 "tabbed_pane_example.cc", | 43 "tabbed_pane_example.cc", |
| 48 "tabbed_pane_example.h", | 44 "tabbed_pane_example.h", |
| 49 "table_example.cc", | 45 "table_example.cc", |
| 50 "table_example.h", | 46 "table_example.h", |
| 51 "text_example.cc", | 47 "text_example.cc", |
| 52 "text_example.h", | 48 "text_example.h", |
| 53 "textfield_example.cc", | 49 "textfield_example.cc", |
| 54 "textfield_example.h", | 50 "textfield_example.h", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 deps = [ | 179 deps = [ |
| 184 "//content:resources", | 180 "//content:resources", |
| 185 ] | 181 ] |
| 186 sources = [ | 182 sources = [ |
| 187 "$root_gen_dir/content/content_resources.pak", | 183 "$root_gen_dir/content/content_resources.pak", |
| 188 ] | 184 ] |
| 189 outputs = [ | 185 outputs = [ |
| 190 "$root_out_dir/content_resources.pak", | 186 "$root_out_dir/content_resources.pak", |
| 191 ] | 187 ] |
| 192 } | 188 } |
| OLD | NEW |