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

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

Issue 2955483003: Show splash screen when entering VR from a deep-link (Closed)
Patch Set: fix compile error on bots Created 3 years, 5 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
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("//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 30 matching lines...) Expand all
41 "textures/insecure_content_permanent_texture.cc", 41 "textures/insecure_content_permanent_texture.cc",
42 "textures/insecure_content_permanent_texture.h", 42 "textures/insecure_content_permanent_texture.h",
43 "textures/insecure_content_transient_texture.cc", 43 "textures/insecure_content_transient_texture.cc",
44 "textures/insecure_content_transient_texture.h", 44 "textures/insecure_content_transient_texture.h",
45 "textures/loading_indicator_texture.cc", 45 "textures/loading_indicator_texture.cc",
46 "textures/loading_indicator_texture.h", 46 "textures/loading_indicator_texture.h",
47 "textures/presentation_toast_texture.cc", 47 "textures/presentation_toast_texture.cc",
48 "textures/presentation_toast_texture.h", 48 "textures/presentation_toast_texture.h",
49 "textures/render_text_wrapper.cc", 49 "textures/render_text_wrapper.cc",
50 "textures/render_text_wrapper.h", 50 "textures/render_text_wrapper.h",
51 "textures/splash_screen_icon_texture.cc",
52 "textures/splash_screen_icon_texture.h",
51 "textures/system_indicator_texture.cc", 53 "textures/system_indicator_texture.cc",
52 "textures/system_indicator_texture.h", 54 "textures/system_indicator_texture.h",
53 "textures/ui_texture.cc", 55 "textures/ui_texture.cc",
54 "textures/ui_texture.h", 56 "textures/ui_texture.h",
55 "textures/url_bar_texture.cc", 57 "textures/url_bar_texture.cc",
56 "textures/url_bar_texture.h", 58 "textures/url_bar_texture.h",
57 "ui_browser_interface.h", 59 "ui_browser_interface.h",
58 "ui_elements/button.cc", 60 "ui_elements/button.cc",
59 "ui_elements/button.h", 61 "ui_elements/button.h",
60 "ui_elements/exit_prompt.cc", 62 "ui_elements/exit_prompt.cc",
61 "ui_elements/exit_prompt.h", 63 "ui_elements/exit_prompt.h",
62 "ui_elements/exit_prompt_backplane.cc", 64 "ui_elements/exit_prompt_backplane.cc",
63 "ui_elements/exit_prompt_backplane.h", 65 "ui_elements/exit_prompt_backplane.h",
64 "ui_elements/exit_warning.cc", 66 "ui_elements/exit_warning.cc",
65 "ui_elements/exit_warning.h", 67 "ui_elements/exit_warning.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/permanent_security_warning.cc", 70 "ui_elements/permanent_security_warning.cc",
69 "ui_elements/permanent_security_warning.h", 71 "ui_elements/permanent_security_warning.h",
70 "ui_elements/presentation_toast.cc", 72 "ui_elements/presentation_toast.cc",
71 "ui_elements/presentation_toast.h", 73 "ui_elements/presentation_toast.h",
72 "ui_elements/screen_dimmer.cc", 74 "ui_elements/screen_dimmer.cc",
73 "ui_elements/screen_dimmer.h", 75 "ui_elements/screen_dimmer.h",
76 "ui_elements/splash_screen_icon.cc",
77 "ui_elements/splash_screen_icon.h",
74 "ui_elements/system_indicator.cc", 78 "ui_elements/system_indicator.cc",
75 "ui_elements/system_indicator.h", 79 "ui_elements/system_indicator.h",
76 "ui_elements/textured_element.cc", 80 "ui_elements/textured_element.cc",
77 "ui_elements/textured_element.h", 81 "ui_elements/textured_element.h",
78 "ui_elements/transient_security_warning.cc", 82 "ui_elements/transient_security_warning.cc",
79 "ui_elements/transient_security_warning.h", 83 "ui_elements/transient_security_warning.h",
80 "ui_elements/transient_url_bar.cc", 84 "ui_elements/transient_url_bar.cc",
81 "ui_elements/transient_url_bar.h", 85 "ui_elements/transient_url_bar.h",
82 "ui_elements/ui_element.cc", 86 "ui_elements/ui_element.cc",
83 "ui_elements/ui_element.h", 87 "ui_elements/ui_element.h",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 230
227 if (is_android) { 231 if (is_android) {
228 deps += [ "//ui/android:ui_java" ] 232 deps += [ "//ui/android:ui_java" ]
229 } 233 }
230 234
231 data = [ 235 data = [
232 "test/data/", 236 "test/data/",
233 "$root_out_dir/components_tests_resources.pak", 237 "$root_out_dir/components_tests_resources.pak",
234 ] 238 ]
235 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698