| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 deps = [ | 177 deps = [ |
| 178 "//third_party/android_tools:android_support_v7_appcompat_resources", | 178 "//third_party/android_tools:android_support_v7_appcompat_resources", |
| 179 ] | 179 ] |
| 180 } | 180 } |
| 181 | 181 |
| 182 android_apk("remoting_host_apk") { | 182 android_apk("remoting_host_apk") { |
| 183 apk_name = "ChromotingHost" | 183 apk_name = "ChromotingHost" |
| 184 android_manifest = "host/AndroidManifest.xml" | 184 android_manifest = "host/AndroidManifest.xml" |
| 185 native_libs = [ "libremoting_host_jni.so" ] | 185 native_libs = [ "libremoting_host_jni.so" ] |
| 186 java_files = [ | 186 java_files = [ |
| 187 "host/src/org/chromium/chromoting/host/RemotingApplication.java", |
| 187 "host/src/org/chromium/chromoting/host/MainActivity.java", | 188 "host/src/org/chromium/chromoting/host/MainActivity.java", |
| 188 "host/src/org/chromium/chromoting/host/jni/Host.java", | 189 "host/src/org/chromium/chromoting/host/jni/Host.java", |
| 189 ] | 190 ] |
| 190 deps = [ | 191 deps = [ |
| 191 ":remoting_host_apk_resources", | 192 ":remoting_host_apk_resources", |
| 192 ":remoting_host_jni", | 193 ":remoting_host_jni", |
| 193 "//base:base_java", | 194 "//base:base_java", |
| 194 "//net/android:net_java", | 195 "//net/android:net_java", |
| 195 "//third_party/android_tools:android_support_v13_java", | 196 "//third_party/android_tools:android_support_v13_java", |
| 196 "//third_party/android_tools:android_support_v7_appcompat_java", | 197 "//third_party/android_tools:android_support_v7_appcompat_java", |
| 197 ] | 198 ] |
| 198 } | 199 } |
| OLD | NEW |