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

Side by Side Diff: remoting/android/BUILD.gn

Issue 2038113002: 💰 target_cpu -> current_cpu in remoting/android/BUILD.gn, remoting_apk_tmpl.gni (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@monochrome
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | remoting/android/remoting_apk_tmpl.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//remoting/android/client_java_tmpl.gni") 7 import("//remoting/android/client_java_tmpl.gni")
8 import("//remoting/android/remoting_apk_tmpl.gni") 8 import("//remoting/android/remoting_apk_tmpl.gni")
9 import("//remoting/remoting_options.gni") 9 import("//remoting/remoting_options.gni")
10 import("//remoting/tools/build/remoting_localize.gni") 10 import("//remoting/tools/build/remoting_localize.gni")
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ":remoting_android_raw_resources", 99 ":remoting_android_raw_resources",
100 "//remoting/resources:strings_java", 100 "//remoting/resources:strings_java",
101 "//third_party/android_tools:android_support_v7_appcompat_resources", 101 "//third_party/android_tools:android_support_v7_appcompat_resources",
102 ] 102 ]
103 } 103 }
104 104
105 remoting_android_client_java_tmpl("remoting_android_client_java") { 105 remoting_android_client_java_tmpl("remoting_android_client_java") {
106 remoting_google_play_services_library = google_play_services_library 106 remoting_google_play_services_library = google_play_services_library
107 } 107 }
108 108
109 if (target_cpu == "arm") { 109 if (current_cpu == "arm") {
110 action("remoting_cardboard_extract_native_lib") { 110 action("remoting_cardboard_extract_native_lib") {
111 script = "//remoting/tools/extract_android_native_lib.py" 111 script = "//remoting/tools/extract_android_native_lib.py"
112 sources = [ 112 sources = [
113 "//third_party/cardboard-java/src/CardboardSample/libs/cardboard.jar", 113 "//third_party/cardboard-java/src/CardboardSample/libs/cardboard.jar",
114 ] 114 ]
115 outputs = [ 115 outputs = [
116 "$root_out_dir/libvrtoolkit.so", 116 "$root_out_dir/libvrtoolkit.so",
117 ] 117 ]
118 args = [ android_app_abi ] 118 args = [ android_app_abi ]
119 args += rebase_path(sources, root_build_dir) 119 args += rebase_path(sources, root_build_dir)
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 ":remoting_host_apk_resources", 205 ":remoting_host_apk_resources",
206 ":remoting_host_jni", 206 ":remoting_host_jni",
207 "//base:base_java", 207 "//base:base_java",
208 "//net/android:net_java", 208 "//net/android:net_java",
209 "//third_party/android_tools:android_support_v13_java", 209 "//third_party/android_tools:android_support_v13_java",
210 "//third_party/android_tools:android_support_v7_appcompat_java", 210 "//third_party/android_tools:android_support_v7_appcompat_java",
211 google_play_services_library, 211 google_play_services_library,
212 google_play_services_resources, 212 google_play_services_resources,
213 ] 213 ]
214 } 214 }
OLDNEW
« no previous file with comments | « no previous file | remoting/android/remoting_apk_tmpl.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698