| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "javatests/src/org/chromium/chromoting/TapGestureDetectorTest.java", | 142 "javatests/src/org/chromium/chromoting/TapGestureDetectorTest.java", |
| 143 "javatests/src/org/chromium/chromoting/TouchEventGenerator.java", | 143 "javatests/src/org/chromium/chromoting/TouchEventGenerator.java", |
| 144 ] | 144 ] |
| 145 deps = [ | 145 deps = [ |
| 146 ":remoting_android_client_java", | 146 ":remoting_android_client_java", |
| 147 ":remoting_test_apk_manifest", | 147 ":remoting_test_apk_manifest", |
| 148 "//base:base_java", | 148 "//base:base_java", |
| 149 "//base:base_java_test_support", | 149 "//base:base_java_test_support", |
| 150 ] | 150 ] |
| 151 } | 151 } |
| 152 |
| 153 android_resources("remoting_host_apk_resources") { |
| 154 custom_package = "org.chromium.chromoting.host" |
| 155 resource_dirs = [ "host/res" ] |
| 156 deps = [ |
| 157 "//third_party/android_tools:android_support_v7_appcompat_resources", |
| 158 ] |
| 159 } |
| 160 |
| 161 android_apk("remoting_host_apk") { |
| 162 apk_name = "ChromotingHost" |
| 163 android_manifest = "host/AndroidManifest.xml" |
| 164 java_files = [ |
| 165 # "host/src/org/chromium/chromoting/host/AnotherClass.java", |
| 166 "host/src/org/chromium/chromoting/host/MainActivity.java", |
| 167 ] |
| 168 deps = [ |
| 169 ":remoting_host_apk_resources", |
| 170 "//third_party/android_tools:android_support_v13_java", |
| 171 "//third_party/android_tools:android_support_v7_appcompat_java", |
| 172 ] |
| 173 } |
| OLD | NEW |