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

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

Issue 2960903002: VR: Use ToolbarModel to drive VR URL bar state. (Closed)
Patch Set: 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/system_indicator_texture.cc", 51 "textures/system_indicator_texture.cc",
52 "textures/system_indicator_texture.h", 52 "textures/system_indicator_texture.h",
53 "textures/ui_texture.cc", 53 "textures/ui_texture.cc",
54 "textures/ui_texture.h", 54 "textures/ui_texture.h",
55 "textures/url_bar_texture.cc", 55 "textures/url_bar_texture.cc",
56 "textures/url_bar_texture.h", 56 "textures/url_bar_texture.h",
57 "toolbar_helper.cc",
58 "toolbar_helper.h",
59 "toolbar_state.cc",
60 "toolbar_state.h",
57 "ui_browser_interface.h", 61 "ui_browser_interface.h",
58 "ui_elements/button.cc", 62 "ui_elements/button.cc",
59 "ui_elements/button.h", 63 "ui_elements/button.h",
60 "ui_elements/exit_prompt.cc", 64 "ui_elements/exit_prompt.cc",
61 "ui_elements/exit_prompt.h", 65 "ui_elements/exit_prompt.h",
62 "ui_elements/exit_prompt_backplane.cc", 66 "ui_elements/exit_prompt_backplane.cc",
63 "ui_elements/exit_prompt_backplane.h", 67 "ui_elements/exit_prompt_backplane.h",
64 "ui_elements/exit_warning.cc", 68 "ui_elements/exit_warning.cc",
65 "ui_elements/exit_warning.h", 69 "ui_elements/exit_warning.h",
66 "ui_elements/loading_indicator.cc", 70 "ui_elements/loading_indicator.cc",
(...skipping 24 matching lines...) Expand all
91 "ui_scene_manager.h", 95 "ui_scene_manager.h",
92 "ui_unsupported_mode.h", 96 "ui_unsupported_mode.h",
93 ] 97 ]
94 98
95 deps = [ 99 deps = [
96 "//base", 100 "//base",
97 "//cc/paint", 101 "//cc/paint",
98 "//chrome/app:generated_resources", 102 "//chrome/app:generated_resources",
99 "//components/security_state/core", 103 "//components/security_state/core",
100 "//components/strings", 104 "//components/strings",
101 "//components/toolbar:vector_icons", 105 "//components/toolbar",
102 "//components/url_formatter", 106 "//components/url_formatter",
103 "//components/vector_icons", 107 "//components/vector_icons",
104 "//skia", 108 "//skia",
105 "//ui/base", 109 "//ui/base",
106 "//ui/display", 110 "//ui/display",
107 "//ui/gl", 111 "//ui/gl",
108 "//ui/gl/init", 112 "//ui/gl/init",
109 "//ui/vector_icons", 113 "//ui/vector_icons",
110 ] 114 ]
111 } 115 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 "ui_elements/ui_element_unittest.cc", 213 "ui_elements/ui_element_unittest.cc",
210 "ui_scene_manager_unittest.cc", 214 "ui_scene_manager_unittest.cc",
211 "ui_scene_unittest.cc", 215 "ui_scene_unittest.cc",
212 ] 216 ]
213 217
214 deps = [ 218 deps = [
215 ":vr_common", 219 ":vr_common",
216 "//base/test:test_support", 220 "//base/test:test_support",
217 "//components:components_tests_pak", 221 "//components:components_tests_pak",
218 "//components/security_state/core", 222 "//components/security_state/core",
223 "//components/toolbar:vector_icons",
219 "//skia", 224 "//skia",
220 "//testing/gmock", 225 "//testing/gmock",
221 "//testing/gtest", 226 "//testing/gtest",
222 "//ui/gfx:test_support", 227 "//ui/gfx:test_support",
223 "//ui/gfx/geometry", 228 "//ui/gfx/geometry",
224 "//ui/gl", 229 "//ui/gl",
225 ] 230 ]
226 231
227 if (is_android) { 232 if (is_android) {
228 deps += [ "//ui/android:ui_java" ] 233 deps += [ "//ui/android:ui_java" ]
229 } 234 }
230 235
231 data = [ 236 data = [
232 "test/data/", 237 "test/data/",
233 "$root_out_dir/components_tests_resources.pak", 238 "$root_out_dir/components_tests_resources.pak",
234 ] 239 ]
235 } 240 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698