Chromium Code Reviews| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 "vr_usage_monitor.h", | 80 "vr_usage_monitor.h", |
| 81 "vr_web_contents_observer.cc", | 81 "vr_web_contents_observer.cc", |
| 82 "vr_web_contents_observer.h", | 82 "vr_web_contents_observer.h", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 deps = [ | 85 deps = [ |
| 86 ":vr_shell_jni_headers", | 86 ":vr_shell_jni_headers", |
| 87 "//base", | 87 "//base", |
| 88 "//cc", | 88 "//cc", |
| 89 "//chrome:resources", | 89 "//chrome:resources", |
| 90 "//chrome/app/vector_icons", | |
|
cjgrant
2017/05/08 21:22:56
I'm checking whether this impacts binary size.
mthiesse
2017/05/08 21:39:30
Unused icons should be getting stripped.
| |
| 90 "//components/omnibox/browser", | 91 "//components/omnibox/browser", |
| 91 "//components/rappor", | 92 "//components/rappor", |
| 92 "//components/security_state/core", | 93 "//components/security_state/core", |
| 93 "//content/public/android:jni", | 94 "//content/public/android:jni", |
| 94 "//content/public/browser", | 95 "//content/public/browser", |
| 95 "//content/public/common", | 96 "//content/public/common", |
| 96 "//device/gamepad", | 97 "//device/gamepad", |
| 97 "//device/vr", | 98 "//device/vr", |
| 98 "//services/ui/public/cpp/gpu", | 99 "//services/ui/public/cpp/gpu", |
| 99 "//ui/android", | 100 "//ui/android", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 147 # See https://crbug.com/704305 for details. | 148 # See https://crbug.com/704305 for details. |
| 148 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] | 149 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] |
| 149 | 150 |
| 150 data = [ | 151 data = [ |
| 151 "test/data/sample_inline.gltf", | 152 "test/data/sample_inline.gltf", |
| 152 "test/data/sample_external.gltf", | 153 "test/data/sample_external.gltf", |
| 153 "test/data/sample.bin", | 154 "test/data/sample.bin", |
| 154 "test/data/sample.glb", | 155 "test/data/sample.glb", |
| 155 ] | 156 ] |
| 156 } | 157 } |
| OLD | NEW |