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

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

Issue 2891503002: VR: UiElement for Screen Capture indicator (Closed)
Patch Set: static library Created 3 years, 7 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("//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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "textures/url_bar_texture.cc", 49 "textures/url_bar_texture.cc",
50 "textures/url_bar_texture.h", 50 "textures/url_bar_texture.h",
51 "ui_elements/audio_capture_indicator.cc", 51 "ui_elements/audio_capture_indicator.cc",
52 "ui_elements/audio_capture_indicator.h", 52 "ui_elements/audio_capture_indicator.h",
53 "ui_elements/close_button.cc", 53 "ui_elements/close_button.cc",
54 "ui_elements/close_button.h", 54 "ui_elements/close_button.h",
55 "ui_elements/loading_indicator.cc", 55 "ui_elements/loading_indicator.cc",
56 "ui_elements/loading_indicator.h", 56 "ui_elements/loading_indicator.h",
57 "ui_elements/permanent_security_warning.cc", 57 "ui_elements/permanent_security_warning.cc",
58 "ui_elements/permanent_security_warning.h", 58 "ui_elements/permanent_security_warning.h",
59 "ui_elements/screen_capture_indicator.cc",
60 "ui_elements/screen_capture_indicator.h",
59 "ui_elements/textured_element.cc", 61 "ui_elements/textured_element.cc",
60 "ui_elements/textured_element.h", 62 "ui_elements/textured_element.h",
61 "ui_elements/transient_security_warning.cc", 63 "ui_elements/transient_security_warning.cc",
62 "ui_elements/transient_security_warning.h", 64 "ui_elements/transient_security_warning.h",
63 "ui_elements/ui_element.cc", 65 "ui_elements/ui_element.cc",
64 "ui_elements/ui_element.h", 66 "ui_elements/ui_element.h",
65 "ui_elements/url_bar.cc", 67 "ui_elements/url_bar.cc",
66 "ui_elements/url_bar.h", 68 "ui_elements/url_bar.h",
67 "ui_elements/video_capture_indicator.cc", 69 "ui_elements/video_capture_indicator.cc",
68 "ui_elements/video_capture_indicator.h", 70 "ui_elements/video_capture_indicator.h",
(...skipping 30 matching lines...) Expand all
99 ] 101 ]
100 102
101 deps = [ 103 deps = [
102 ":vr_shell_jni_headers", 104 ":vr_shell_jni_headers",
103 "//base", 105 "//base",
104 "//cc", 106 "//cc",
105 "//chrome:resources", 107 "//chrome:resources",
106 "//components/omnibox/browser", 108 "//components/omnibox/browser",
107 "//components/rappor", 109 "//components/rappor",
108 "//components/security_state/core", 110 "//components/security_state/core",
111 "//components/vector_icons",
109 "//content/public/android:jni", 112 "//content/public/android:jni",
110 "//content/public/browser", 113 "//content/public/browser",
111 "//content/public/common", 114 "//content/public/common",
112 "//device/gamepad", 115 "//device/gamepad",
113 "//device/vr", 116 "//device/vr",
114 "//services/ui/public/cpp/gpu", 117 "//services/ui/public/cpp/gpu",
115 "//ui/android", 118 "//ui/android",
116 "//ui/base", 119 "//ui/base",
117 "//ui/display", 120 "//ui/display",
118 "//ui/gl", 121 "//ui/gl",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 # See https://crbug.com/704305 for details. 170 # See https://crbug.com/704305 for details.
168 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] 171 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
169 172
170 data = [ 173 data = [
171 "test/data/sample_inline.gltf", 174 "test/data/sample_inline.gltf",
172 "test/data/sample_external.gltf", 175 "test/data/sample_external.gltf",
173 "test/data/sample.bin", 176 "test/data/sample.bin",
174 "test/data/sample.glb", 177 "test/data/sample.glb",
175 ] 178 ]
176 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698