| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "//base:base_java", | 149 "//base:base_java", |
| 150 "//base:base_java_test_support", | 150 "//base:base_java_test_support", |
| 151 ] | 151 ] |
| 152 } | 152 } |
| 153 | 153 |
| 154 shared_library("remoting_host_jni") { | 154 shared_library("remoting_host_jni") { |
| 155 deps = [ | 155 deps = [ |
| 156 ":jni_headers", | 156 ":jni_headers", |
| 157 "//google_apis", | 157 "//google_apis", |
| 158 "//remoting/base", | 158 "//remoting/base", |
| 159 "//remoting/host", |
| 159 "//remoting/protocol", | 160 "//remoting/protocol", |
| 160 ] | 161 ] |
| 161 sources = [ | 162 sources = [ |
| 162 "//remoting/host/android/jni_host.cc", | 163 "//remoting/host/android/jni_host.cc", |
| 163 "//remoting/host/android/jni_host.h", | 164 "//remoting/host/android/jni_host.h", |
| 164 "//remoting/host/android/remoting_host_jni_onload.cc", | 165 "//remoting/host/android/remoting_host_jni_onload.cc", |
| 165 "//remoting/host/android/remoting_host_jni_registrar.cc", | 166 "//remoting/host/android/remoting_host_jni_registrar.cc", |
| 166 "//remoting/host/android/remoting_host_jni_registrar.h", | 167 "//remoting/host/android/remoting_host_jni_registrar.h", |
| 167 ] | 168 ] |
| 168 } | 169 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 180 android_manifest = "host/AndroidManifest.xml" | 181 android_manifest = "host/AndroidManifest.xml" |
| 181 native_libs = [ "libremoting_host_jni.so" ] | 182 native_libs = [ "libremoting_host_jni.so" ] |
| 182 java_files = [ | 183 java_files = [ |
| 183 "host/src/org/chromium/chromoting/host/MainActivity.java", | 184 "host/src/org/chromium/chromoting/host/MainActivity.java", |
| 184 "host/src/org/chromium/chromoting/host/jni/Host.java", | 185 "host/src/org/chromium/chromoting/host/jni/Host.java", |
| 185 ] | 186 ] |
| 186 deps = [ | 187 deps = [ |
| 187 ":remoting_host_apk_resources", | 188 ":remoting_host_apk_resources", |
| 188 ":remoting_host_jni", | 189 ":remoting_host_jni", |
| 189 "//base:base_java", | 190 "//base:base_java", |
| 191 "//net/android:net_java", |
| 190 "//third_party/android_tools:android_support_v13_java", | 192 "//third_party/android_tools:android_support_v13_java", |
| 191 "//third_party/android_tools:android_support_v7_appcompat_java", | 193 "//third_party/android_tools:android_support_v7_appcompat_java", |
| 192 ] | 194 ] |
| 193 } | 195 } |
| OLD | NEW |