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

Unified Diff: third_party/gvr-android-sdk/BUILD.gn

Issue 2258513003: Revert of Migrate WebVR Cardboard implementation to GVR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gvr_third_party
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/vr/vr_device_manager.cc ('k') | third_party/gvr-android-sdk/proguard/base.flags » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gvr-android-sdk/BUILD.gn
diff --git a/third_party/gvr-android-sdk/BUILD.gn b/third_party/gvr-android-sdk/BUILD.gn
index 305bd3120b02123bb0d19b1604bdbb6c56d062d6..173fc61bf3684366498aa7663e22ea723e1f44e1 100644
--- a/third_party/gvr-android-sdk/BUILD.gn
+++ b/third_party/gvr-android-sdk/BUILD.gn
@@ -25,19 +25,19 @@
}
copy("libgvr_shared_library") {
- if (current_cpu == "arm") {
+ if (target_cpu == "arm") {
sources = [
"src/ndk-beta/lib/android_arm/libgvr.so",
]
- } else if (current_cpu == "arm64") {
+ } else if (target_cpu == "arm64") {
sources = [
"src/ndk-beta/lib/android_arm64/libgvr.so",
]
- } else if (current_cpu == "x86") {
+ } else if (target_cpu == "x86") {
sources = [
"src/ndk-beta/lib/android_x86/libgvr.so",
]
- } else if (current_cpu == "x64") {
+ } else if (target_cpu == "x64") {
sources = [
"src/ndk-beta/lib/android_x86_64/libgvr.so",
]
« no previous file with comments | « device/vr/vr_device_manager.cc ('k') | third_party/gvr-android-sdk/proguard/base.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698