Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: chrome/browser/android/vr_shell/BUILD.gn

Issue 2913633002: [vr] Clicking on the security icon should prompt the user to bail out of VR (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/android/vr_shell/color_scheme.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 15 matching lines...) Expand all
26 "fps_meter.h", 26 "fps_meter.h",
27 "gl_browser_interface.h", 27 "gl_browser_interface.h",
28 "gltf_asset.cc", 28 "gltf_asset.cc",
29 "gltf_asset.h", 29 "gltf_asset.h",
30 "gltf_parser.cc", 30 "gltf_parser.cc",
31 "gltf_parser.h", 31 "gltf_parser.h",
32 "textures/button_texture.cc", 32 "textures/button_texture.cc",
33 "textures/button_texture.h", 33 "textures/button_texture.h",
34 "textures/close_button_texture.cc", 34 "textures/close_button_texture.cc",
35 "textures/close_button_texture.h", 35 "textures/close_button_texture.h",
36 "textures/exit_prompt_texture.cc",
37 "textures/exit_prompt_texture.h",
36 "textures/exit_warning_texture.cc", 38 "textures/exit_warning_texture.cc",
37 "textures/exit_warning_texture.h", 39 "textures/exit_warning_texture.h",
38 "textures/insecure_content_permanent_texture.cc", 40 "textures/insecure_content_permanent_texture.cc",
39 "textures/insecure_content_permanent_texture.h", 41 "textures/insecure_content_permanent_texture.h",
40 "textures/insecure_content_transient_texture.cc", 42 "textures/insecure_content_transient_texture.cc",
41 "textures/insecure_content_transient_texture.h", 43 "textures/insecure_content_transient_texture.h",
42 "textures/loading_indicator_texture.cc", 44 "textures/loading_indicator_texture.cc",
43 "textures/loading_indicator_texture.h", 45 "textures/loading_indicator_texture.h",
44 "textures/render_text_wrapper.cc", 46 "textures/render_text_wrapper.cc",
45 "textures/render_text_wrapper.h", 47 "textures/render_text_wrapper.h",
46 "textures/system_indicator_texture.cc", 48 "textures/system_indicator_texture.cc",
47 "textures/system_indicator_texture.h", 49 "textures/system_indicator_texture.h",
48 "textures/ui_texture.cc", 50 "textures/ui_texture.cc",
49 "textures/ui_texture.h", 51 "textures/ui_texture.h",
50 "textures/url_bar_texture.cc", 52 "textures/url_bar_texture.cc",
51 "textures/url_bar_texture.h", 53 "textures/url_bar_texture.h",
52 "ui_browser_interface.h", 54 "ui_browser_interface.h",
53 "ui_elements/audio_capture_indicator.cc", 55 "ui_elements/audio_capture_indicator.cc",
54 "ui_elements/audio_capture_indicator.h", 56 "ui_elements/audio_capture_indicator.h",
55 "ui_elements/button.cc", 57 "ui_elements/button.cc",
56 "ui_elements/button.h", 58 "ui_elements/button.h",
59 "ui_elements/exit_prompt.cc",
60 "ui_elements/exit_prompt.h",
57 "ui_elements/exit_warning.cc", 61 "ui_elements/exit_warning.cc",
58 "ui_elements/exit_warning.h", 62 "ui_elements/exit_warning.h",
59 "ui_elements/loading_indicator.cc", 63 "ui_elements/loading_indicator.cc",
60 "ui_elements/loading_indicator.h", 64 "ui_elements/loading_indicator.h",
61 "ui_elements/permanent_security_warning.cc", 65 "ui_elements/permanent_security_warning.cc",
62 "ui_elements/permanent_security_warning.h", 66 "ui_elements/permanent_security_warning.h",
63 "ui_elements/screen_capture_indicator.cc", 67 "ui_elements/screen_capture_indicator.cc",
64 "ui_elements/screen_capture_indicator.h", 68 "ui_elements/screen_capture_indicator.h",
65 "ui_elements/screen_dimmer.cc", 69 "ui_elements/screen_dimmer.cc",
66 "ui_elements/screen_dimmer.h", 70 "ui_elements/screen_dimmer.h",
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 195 }
192 196
193 test("vr_shell_unittests") { 197 test("vr_shell_unittests") {
194 sources = [ 198 sources = [
195 "fps_meter_unittest.cc", 199 "fps_meter_unittest.cc",
196 "gltf_parser_unittest.cc", 200 "gltf_parser_unittest.cc",
197 "test/paths.cc", 201 "test/paths.cc",
198 "test/paths.h", 202 "test/paths.h",
199 "textures/close_button_texture_unittest.cc", 203 "textures/close_button_texture_unittest.cc",
200 "textures/url_bar_texture_unittest.cc", 204 "textures/url_bar_texture_unittest.cc",
205 "ui_elements/exit_prompt_unittest.cc",
201 "ui_elements/ui_element_unittest.cc", 206 "ui_elements/ui_element_unittest.cc",
202 "ui_scene_manager_unittest.cc", 207 "ui_scene_manager_unittest.cc",
203 "ui_scene_unittest.cc", 208 "ui_scene_unittest.cc",
204 ] 209 ]
205 210
206 deps = [ 211 deps = [
207 ":vr_common_ui", 212 ":vr_common_ui",
208 "//base/test:run_all_unittests", 213 "//base/test:run_all_unittests",
209 "//base/test:test_support", 214 "//base/test:test_support",
210 "//components/security_state/core", 215 "//components/security_state/core",
211 "//skia", 216 "//skia",
212 "//testing/gmock", 217 "//testing/gmock",
213 "//testing/gtest", 218 "//testing/gtest",
219 "//ui/gfx:test_support",
214 "//ui/gfx/geometry", 220 "//ui/gfx/geometry",
215 "//ui/gl", 221 "//ui/gl",
216 ] 222 ]
217 223
218 data = [ 224 data = [
219 "test/data/sample_inline.gltf", 225 "test/data/sample_inline.gltf",
220 "test/data/sample_external.gltf", 226 "test/data/sample_external.gltf",
221 "test/data/sample.bin", 227 "test/data/sample.bin",
222 "test/data/sample.glb", 228 "test/data/sample.glb",
223 ] 229 ]
224 } 230 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/android/vr_shell/color_scheme.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698