| 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("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//device/vr/features/features.gni") | 7 import("//device/vr/features/features.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_vr) | 10 assert(enable_vr) |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "fps_meter.cc", | 25 "fps_meter.cc", |
| 26 "fps_meter.h", | 26 "fps_meter.h", |
| 27 "gltf_asset.cc", | 27 "gltf_asset.cc", |
| 28 "gltf_asset.h", | 28 "gltf_asset.h", |
| 29 "gltf_parser.cc", | 29 "gltf_parser.cc", |
| 30 "gltf_parser.h", | 30 "gltf_parser.h", |
| 31 "textures/button_texture.cc", | 31 "textures/button_texture.cc", |
| 32 "textures/button_texture.h", | 32 "textures/button_texture.h", |
| 33 "textures/close_button_texture.cc", | 33 "textures/close_button_texture.cc", |
| 34 "textures/close_button_texture.h", | 34 "textures/close_button_texture.h", |
| 35 "textures/exit_prompt_texture.cc", |
| 36 "textures/exit_prompt_texture.h", |
| 35 "textures/exit_warning_texture.cc", | 37 "textures/exit_warning_texture.cc", |
| 36 "textures/exit_warning_texture.h", | 38 "textures/exit_warning_texture.h", |
| 37 "textures/insecure_content_permanent_texture.cc", | 39 "textures/insecure_content_permanent_texture.cc", |
| 38 "textures/insecure_content_permanent_texture.h", | 40 "textures/insecure_content_permanent_texture.h", |
| 39 "textures/insecure_content_transient_texture.cc", | 41 "textures/insecure_content_transient_texture.cc", |
| 40 "textures/insecure_content_transient_texture.h", | 42 "textures/insecure_content_transient_texture.h", |
| 41 "textures/loading_indicator_texture.cc", | 43 "textures/loading_indicator_texture.cc", |
| 42 "textures/loading_indicator_texture.h", | 44 "textures/loading_indicator_texture.h", |
| 43 "textures/render_text_wrapper.cc", | 45 "textures/render_text_wrapper.cc", |
| 44 "textures/render_text_wrapper.h", | 46 "textures/render_text_wrapper.h", |
| 45 "textures/system_indicator_texture.cc", | 47 "textures/system_indicator_texture.cc", |
| 46 "textures/system_indicator_texture.h", | 48 "textures/system_indicator_texture.h", |
| 47 "textures/ui_texture.cc", | 49 "textures/ui_texture.cc", |
| 48 "textures/ui_texture.h", | 50 "textures/ui_texture.h", |
| 49 "textures/url_bar_texture.cc", | 51 "textures/url_bar_texture.cc", |
| 50 "textures/url_bar_texture.h", | 52 "textures/url_bar_texture.h", |
| 51 "ui_elements/audio_capture_indicator.cc", | 53 "ui_elements/audio_capture_indicator.cc", |
| 52 "ui_elements/audio_capture_indicator.h", | 54 "ui_elements/audio_capture_indicator.h", |
| 53 "ui_elements/button.cc", | 55 "ui_elements/button.cc", |
| 54 "ui_elements/button.h", | 56 "ui_elements/button.h", |
| 57 "ui_elements/exit_prompt.cc", |
| 58 "ui_elements/exit_prompt.h", |
| 55 "ui_elements/exit_warning.cc", | 59 "ui_elements/exit_warning.cc", |
| 56 "ui_elements/exit_warning.h", | 60 "ui_elements/exit_warning.h", |
| 57 "ui_elements/loading_indicator.cc", | 61 "ui_elements/loading_indicator.cc", |
| 58 "ui_elements/loading_indicator.h", | 62 "ui_elements/loading_indicator.h", |
| 59 "ui_elements/permanent_security_warning.cc", | 63 "ui_elements/permanent_security_warning.cc", |
| 60 "ui_elements/permanent_security_warning.h", | 64 "ui_elements/permanent_security_warning.h", |
| 61 "ui_elements/screen_capture_indicator.cc", | 65 "ui_elements/screen_capture_indicator.cc", |
| 62 "ui_elements/screen_capture_indicator.h", | 66 "ui_elements/screen_capture_indicator.h", |
| 63 "ui_elements/screen_dimmer.cc", | 67 "ui_elements/screen_dimmer.cc", |
| 64 "ui_elements/screen_dimmer.h", | 68 "ui_elements/screen_dimmer.h", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 184 } |
| 181 | 185 |
| 182 test("vr_shell_unittests") { | 186 test("vr_shell_unittests") { |
| 183 sources = [ | 187 sources = [ |
| 184 "fps_meter_unittest.cc", | 188 "fps_meter_unittest.cc", |
| 185 "gltf_parser_unittest.cc", | 189 "gltf_parser_unittest.cc", |
| 186 "test/paths.cc", | 190 "test/paths.cc", |
| 187 "test/paths.h", | 191 "test/paths.h", |
| 188 "textures/close_button_texture_unittest.cc", | 192 "textures/close_button_texture_unittest.cc", |
| 189 "textures/url_bar_texture_unittest.cc", | 193 "textures/url_bar_texture_unittest.cc", |
| 194 "ui_elements/exit_prompt_unittest.cc", |
| 190 "ui_elements/ui_element_unittest.cc", | 195 "ui_elements/ui_element_unittest.cc", |
| 191 "ui_scene_manager_unittest.cc", | 196 "ui_scene_manager_unittest.cc", |
| 192 "ui_scene_unittest.cc", | 197 "ui_scene_unittest.cc", |
| 193 ] | 198 ] |
| 194 | 199 |
| 195 deps = [ | 200 deps = [ |
| 196 ":vr_common_ui", | 201 ":vr_common_ui", |
| 197 "//base/test:run_all_unittests", | 202 "//base/test:run_all_unittests", |
| 198 "//base/test:test_support", | 203 "//base/test:test_support", |
| 199 "//components/security_state/core", | 204 "//components/security_state/core", |
| 200 "//skia", | 205 "//skia", |
| 201 "//testing/gmock", | 206 "//testing/gmock", |
| 202 "//testing/gtest", | 207 "//testing/gtest", |
| 208 "//ui/gfx:test_support", |
| 203 "//ui/gfx/geometry", | 209 "//ui/gfx/geometry", |
| 204 "//ui/gl", | 210 "//ui/gl", |
| 205 ] | 211 ] |
| 206 | 212 |
| 207 data = [ | 213 data = [ |
| 208 "test/data/sample_inline.gltf", | 214 "test/data/sample_inline.gltf", |
| 209 "test/data/sample_external.gltf", | 215 "test/data/sample_external.gltf", |
| 210 "test/data/sample.bin", | 216 "test/data/sample.bin", |
| 211 "test/data/sample.glb", | 217 "test/data/sample.glb", |
| 212 ] | 218 ] |
| 213 } | 219 } |
| OLD | NEW |