OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//chrome/common/features.gni") | 5 import("//chrome/common/features.gni") |
6 import("//device/vr/features/features.gni") | 6 import("//device/vr/features/features.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "textures/loading_indicator_texture.h", | 46 "textures/loading_indicator_texture.h", |
47 "textures/render_text_wrapper.cc", | 47 "textures/render_text_wrapper.cc", |
48 "textures/render_text_wrapper.h", | 48 "textures/render_text_wrapper.h", |
49 "textures/system_indicator_texture.cc", | 49 "textures/system_indicator_texture.cc", |
50 "textures/system_indicator_texture.h", | 50 "textures/system_indicator_texture.h", |
51 "textures/ui_texture.cc", | 51 "textures/ui_texture.cc", |
52 "textures/ui_texture.h", | 52 "textures/ui_texture.h", |
53 "textures/url_bar_texture.cc", | 53 "textures/url_bar_texture.cc", |
54 "textures/url_bar_texture.h", | 54 "textures/url_bar_texture.h", |
55 "ui_browser_interface.h", | 55 "ui_browser_interface.h", |
56 "ui_elements/audio_capture_indicator.cc", | |
57 "ui_elements/audio_capture_indicator.h", | |
58 "ui_elements/button.cc", | 56 "ui_elements/button.cc", |
59 "ui_elements/button.h", | 57 "ui_elements/button.h", |
60 "ui_elements/exit_prompt.cc", | 58 "ui_elements/exit_prompt.cc", |
61 "ui_elements/exit_prompt.h", | 59 "ui_elements/exit_prompt.h", |
62 "ui_elements/exit_prompt_backplane.cc", | 60 "ui_elements/exit_prompt_backplane.cc", |
63 "ui_elements/exit_prompt_backplane.h", | 61 "ui_elements/exit_prompt_backplane.h", |
64 "ui_elements/exit_warning.cc", | 62 "ui_elements/exit_warning.cc", |
65 "ui_elements/exit_warning.h", | 63 "ui_elements/exit_warning.h", |
66 "ui_elements/loading_indicator.cc", | 64 "ui_elements/loading_indicator.cc", |
67 "ui_elements/loading_indicator.h", | 65 "ui_elements/loading_indicator.h", |
68 "ui_elements/location_access_indicator.cc", | |
69 "ui_elements/location_access_indicator.h", | |
70 "ui_elements/permanent_security_warning.cc", | 66 "ui_elements/permanent_security_warning.cc", |
71 "ui_elements/permanent_security_warning.h", | 67 "ui_elements/permanent_security_warning.h", |
72 "ui_elements/screen_capture_indicator.cc", | |
73 "ui_elements/screen_capture_indicator.h", | |
74 "ui_elements/screen_dimmer.cc", | 68 "ui_elements/screen_dimmer.cc", |
75 "ui_elements/screen_dimmer.h", | 69 "ui_elements/screen_dimmer.h", |
| 70 "ui_elements/system_indicator.cc", |
| 71 "ui_elements/system_indicator.h", |
76 "ui_elements/textured_element.cc", | 72 "ui_elements/textured_element.cc", |
77 "ui_elements/textured_element.h", | 73 "ui_elements/textured_element.h", |
78 "ui_elements/transient_security_warning.cc", | 74 "ui_elements/transient_security_warning.cc", |
79 "ui_elements/transient_security_warning.h", | 75 "ui_elements/transient_security_warning.h", |
80 "ui_elements/transient_url_bar.cc", | 76 "ui_elements/transient_url_bar.cc", |
81 "ui_elements/transient_url_bar.h", | 77 "ui_elements/transient_url_bar.h", |
82 "ui_elements/ui_element.cc", | 78 "ui_elements/ui_element.cc", |
83 "ui_elements/ui_element.h", | 79 "ui_elements/ui_element.h", |
84 "ui_elements/ui_element_debug_id.h", | 80 "ui_elements/ui_element_debug_id.h", |
85 "ui_elements/url_bar.cc", | 81 "ui_elements/url_bar.cc", |
86 "ui_elements/url_bar.h", | 82 "ui_elements/url_bar.h", |
87 "ui_elements/video_capture_indicator.cc", | |
88 "ui_elements/video_capture_indicator.h", | |
89 "ui_interface.h", | 83 "ui_interface.h", |
90 "ui_scene.cc", | 84 "ui_scene.cc", |
91 "ui_scene.h", | 85 "ui_scene.h", |
92 "ui_scene_manager.cc", | 86 "ui_scene_manager.cc", |
93 "ui_scene_manager.h", | 87 "ui_scene_manager.h", |
94 "ui_unsupported_mode.h", | 88 "ui_unsupported_mode.h", |
95 ] | 89 ] |
96 | 90 |
97 deps = [ | 91 deps = [ |
98 "//base", | 92 "//base", |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 | 222 |
229 if (is_android) { | 223 if (is_android) { |
230 deps += [ "//ui/android:ui_java" ] | 224 deps += [ "//ui/android:ui_java" ] |
231 } | 225 } |
232 | 226 |
233 data = [ | 227 data = [ |
234 "test/data/", | 228 "test/data/", |
235 "$root_out_dir/components_tests_resources.pak", | 229 "$root_out_dir/components_tests_resources.pak", |
236 ] | 230 ] |
237 } | 231 } |
OLD | NEW |