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