| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "ui_elements/permanent_security_warning.cc", | 68 "ui_elements/permanent_security_warning.cc", |
| 69 "ui_elements/permanent_security_warning.h", | 69 "ui_elements/permanent_security_warning.h", |
| 70 "ui_elements/presentation_toast.cc", | 70 "ui_elements/presentation_toast.cc", |
| 71 "ui_elements/presentation_toast.h", | 71 "ui_elements/presentation_toast.h", |
| 72 "ui_elements/screen_dimmer.cc", | 72 "ui_elements/screen_dimmer.cc", |
| 73 "ui_elements/screen_dimmer.h", | 73 "ui_elements/screen_dimmer.h", |
| 74 "ui_elements/system_indicator.cc", | 74 "ui_elements/system_indicator.cc", |
| 75 "ui_elements/system_indicator.h", | 75 "ui_elements/system_indicator.h", |
| 76 "ui_elements/textured_element.cc", | 76 "ui_elements/textured_element.cc", |
| 77 "ui_elements/textured_element.h", | 77 "ui_elements/textured_element.h", |
| 78 "ui_elements/transience_manager.cc", |
| 79 "ui_elements/transience_manager.h", |
| 78 "ui_elements/transient_security_warning.cc", | 80 "ui_elements/transient_security_warning.cc", |
| 79 "ui_elements/transient_security_warning.h", | 81 "ui_elements/transient_security_warning.h", |
| 80 "ui_elements/transient_url_bar.cc", | 82 "ui_elements/transient_url_bar.cc", |
| 81 "ui_elements/transient_url_bar.h", | 83 "ui_elements/transient_url_bar.h", |
| 82 "ui_elements/ui_element.cc", | 84 "ui_elements/ui_element.cc", |
| 83 "ui_elements/ui_element.h", | 85 "ui_elements/ui_element.h", |
| 84 "ui_elements/ui_element_debug_id.h", | 86 "ui_elements/ui_element_debug_id.h", |
| 85 "ui_elements/url_bar.cc", | 87 "ui_elements/url_bar.cc", |
| 86 "ui_elements/url_bar.h", | 88 "ui_elements/url_bar.h", |
| 87 "ui_interface.h", | 89 "ui_interface.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 test("vr_common_unittests") { | 201 test("vr_common_unittests") { |
| 200 sources = [ | 202 sources = [ |
| 201 "fps_meter_unittest.cc", | 203 "fps_meter_unittest.cc", |
| 202 "gltf_parser_unittest.cc", | 204 "gltf_parser_unittest.cc", |
| 203 "run_all_unittests.cc", | 205 "run_all_unittests.cc", |
| 204 "test/paths.cc", | 206 "test/paths.cc", |
| 205 "test/paths.h", | 207 "test/paths.h", |
| 206 "textures/close_button_texture_unittest.cc", | 208 "textures/close_button_texture_unittest.cc", |
| 207 "textures/url_bar_texture_unittest.cc", | 209 "textures/url_bar_texture_unittest.cc", |
| 208 "ui_elements/exit_prompt_unittest.cc", | 210 "ui_elements/exit_prompt_unittest.cc", |
| 211 "ui_elements/transience_manager_unittest.cc", |
| 209 "ui_elements/ui_element_unittest.cc", | 212 "ui_elements/ui_element_unittest.cc", |
| 210 "ui_scene_manager_unittest.cc", | 213 "ui_scene_manager_unittest.cc", |
| 211 "ui_scene_unittest.cc", | 214 "ui_scene_unittest.cc", |
| 212 ] | 215 ] |
| 213 | 216 |
| 214 deps = [ | 217 deps = [ |
| 215 ":vr_common", | 218 ":vr_common", |
| 216 "//base/test:test_support", | 219 "//base/test:test_support", |
| 217 "//components:components_tests_pak", | 220 "//components:components_tests_pak", |
| 218 "//components/security_state/core", | 221 "//components/security_state/core", |
| 219 "//skia", | 222 "//skia", |
| 220 "//testing/gmock", | 223 "//testing/gmock", |
| 221 "//testing/gtest", | 224 "//testing/gtest", |
| 222 "//ui/gfx:test_support", | 225 "//ui/gfx:test_support", |
| 223 "//ui/gfx/geometry", | 226 "//ui/gfx/geometry", |
| 224 "//ui/gl", | 227 "//ui/gl", |
| 225 ] | 228 ] |
| 226 | 229 |
| 227 if (is_android) { | 230 if (is_android) { |
| 228 deps += [ "//ui/android:ui_java" ] | 231 deps += [ "//ui/android:ui_java" ] |
| 229 } | 232 } |
| 230 | 233 |
| 231 data = [ | 234 data = [ |
| 232 "test/data/", | 235 "test/data/", |
| 233 "$root_out_dir/components_tests_resources.pak", | 236 "$root_out_dir/components_tests_resources.pak", |
| 234 ] | 237 ] |
| 235 } | 238 } |
| OLD | NEW |