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 "anchor_example.cc", |
| 12 "anchor_example.h", |
11 "bubble_example.cc", | 13 "bubble_example.cc", |
12 "bubble_example.h", | 14 "bubble_example.h", |
13 "button_example.cc", | 15 "button_example.cc", |
14 "button_example.h", | 16 "button_example.h", |
15 "button_sticker_sheet.cc", | 17 "button_sticker_sheet.cc", |
16 "button_sticker_sheet.h", | 18 "button_sticker_sheet.h", |
17 "checkbox_example.cc", | 19 "checkbox_example.cc", |
18 "checkbox_example.h", | 20 "checkbox_example.h", |
19 "combobox_example.cc", | 21 "combobox_example.cc", |
20 "combobox_example.h", | 22 "combobox_example.h", |
21 "example_base.cc", | 23 "example_base.cc", |
22 "example_base.h", | 24 "example_base.h", |
23 "example_combobox_model.cc", | 25 "example_combobox_model.cc", |
24 "example_combobox_model.h", | 26 "example_combobox_model.h", |
25 "examples_window.cc", | 27 "examples_window.cc", |
26 "examples_window.h", | 28 "examples_window.h", |
| 29 "fill_example.cc", |
| 30 "fill_example.h", |
27 "label_example.cc", | 31 "label_example.cc", |
28 "label_example.h", | 32 "label_example.h", |
29 "link_example.cc", | 33 "link_example.cc", |
30 "link_example.h", | 34 "link_example.h", |
31 "menu_example.cc", | 35 "menu_example.cc", |
32 "menu_example.h", | 36 "menu_example.h", |
33 "message_box_example.cc", | 37 "message_box_example.cc", |
34 "message_box_example.h", | 38 "message_box_example.h", |
35 "multiline_example.cc", | 39 "multiline_example.cc", |
36 "multiline_example.h", | 40 "multiline_example.h", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 deps = [ | 188 deps = [ |
185 "//content:resources", | 189 "//content:resources", |
186 ] | 190 ] |
187 sources = [ | 191 sources = [ |
188 "$root_gen_dir/content/content_resources.pak", | 192 "$root_gen_dir/content/content_resources.pak", |
189 ] | 193 ] |
190 outputs = [ | 194 outputs = [ |
191 "$root_out_dir/content_resources.pak", | 195 "$root_out_dir/content_resources.pak", |
192 ] | 196 ] |
193 } | 197 } |
OLD | NEW |