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 "button_sticker_sheet.cc", |
| 16 "button_sticker_sheet.h", |
15 "checkbox_example.cc", | 17 "checkbox_example.cc", |
16 "checkbox_example.h", | 18 "checkbox_example.h", |
17 "combobox_example.cc", | 19 "combobox_example.cc", |
18 "combobox_example.h", | 20 "combobox_example.h", |
19 "example_base.cc", | 21 "example_base.cc", |
20 "example_base.h", | 22 "example_base.h", |
21 "example_combobox_model.cc", | 23 "example_combobox_model.cc", |
22 "example_combobox_model.h", | 24 "example_combobox_model.h", |
23 "examples_window.cc", | 25 "examples_window.cc", |
24 "examples_window.h", | 26 "examples_window.h", |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 deps = [ | 184 deps = [ |
183 "//content:resources", | 185 "//content:resources", |
184 ] | 186 ] |
185 sources = [ | 187 sources = [ |
186 "$root_gen_dir/content/content_resources.pak", | 188 "$root_gen_dir/content/content_resources.pak", |
187 ] | 189 ] |
188 outputs = [ | 190 outputs = [ |
189 "$root_out_dir/content_resources.pak", | 191 "$root_out_dir/content_resources.pak", |
190 ] | 192 ] |
191 } | 193 } |
OLD | NEW |