| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "textures/splash_screen_icon_texture.h", | 52 "textures/splash_screen_icon_texture.h", |
| 53 "textures/system_indicator_texture.cc", | 53 "textures/system_indicator_texture.cc", |
| 54 "textures/system_indicator_texture.h", | 54 "textures/system_indicator_texture.h", |
| 55 "textures/ui_texture.cc", | 55 "textures/ui_texture.cc", |
| 56 "textures/ui_texture.h", | 56 "textures/ui_texture.h", |
| 57 "textures/url_bar_texture.cc", | 57 "textures/url_bar_texture.cc", |
| 58 "textures/url_bar_texture.h", | 58 "textures/url_bar_texture.h", |
| 59 "ui_browser_interface.h", | 59 "ui_browser_interface.h", |
| 60 "ui_elements/button.cc", | 60 "ui_elements/button.cc", |
| 61 "ui_elements/button.h", | 61 "ui_elements/button.h", |
| 62 "ui_elements/exclusive_screen_toast.cc", |
| 63 "ui_elements/exclusive_screen_toast.h", |
| 62 "ui_elements/exit_prompt.cc", | 64 "ui_elements/exit_prompt.cc", |
| 63 "ui_elements/exit_prompt.h", | 65 "ui_elements/exit_prompt.h", |
| 64 "ui_elements/exit_prompt_backplane.cc", | 66 "ui_elements/exit_prompt_backplane.cc", |
| 65 "ui_elements/exit_prompt_backplane.h", | 67 "ui_elements/exit_prompt_backplane.h", |
| 66 "ui_elements/loading_indicator.cc", | 68 "ui_elements/loading_indicator.cc", |
| 67 "ui_elements/loading_indicator.h", | 69 "ui_elements/loading_indicator.h", |
| 68 "ui_elements/screen_dimmer.cc", | 70 "ui_elements/screen_dimmer.cc", |
| 69 "ui_elements/screen_dimmer.h", | 71 "ui_elements/screen_dimmer.h", |
| 70 "ui_elements/simple_textured_element.h", | 72 "ui_elements/simple_textured_element.h", |
| 71 "ui_elements/system_indicator.cc", | 73 "ui_elements/system_indicator.cc", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 | 223 |
| 222 if (is_android) { | 224 if (is_android) { |
| 223 deps += [ "//ui/android:ui_java" ] | 225 deps += [ "//ui/android:ui_java" ] |
| 224 } | 226 } |
| 225 | 227 |
| 226 data = [ | 228 data = [ |
| 227 "test/data/", | 229 "test/data/", |
| 228 "$root_out_dir/components_tests_resources.pak", | 230 "$root_out_dir/components_tests_resources.pak", |
| 229 ] | 231 ] |
| 230 } | 232 } |
| OLD | NEW |