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

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

Issue 1815803002: Add skeleton Android app: remoting_host_apk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/host/AndroidManifest.xml » ('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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/android/host/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698