| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |