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

Side by Side Diff: remoting/BUILD.gn

Issue 1863933002: [remoting android] Add and build host code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android-host-add-native
Patch Set: Add resources_android.cc Created 4 years, 8 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/BUILD.gn » ('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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/util/version.gni") 7 import("//build/util/version.gni")
8 import("//remoting/remoting_version.gni") 8 import("//remoting/remoting_version.gni")
9 import("//remoting/remoting_enable.gni") 9 import("//remoting/remoting_enable.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 deps += [ 50 deps += [
51 "//remoting/android:remoting_apk", 51 "//remoting/android:remoting_apk",
52 "//remoting/android:remoting_test_apk", 52 "//remoting/android:remoting_test_apk",
53 ] 53 ]
54 } 54 }
55 55
56 if (enable_remoting_host) { 56 if (enable_remoting_host) {
57 deps += [ 57 deps += [
58 "//remoting:remoting_perftests", 58 "//remoting:remoting_perftests",
59 "//remoting/host", 59 "//remoting/host",
60 "//remoting/host:remoting_native_messaging_manifests",
61 ] 60 ]
62 61
63 if (!is_chromeos) { 62 if (!is_android) {
63 deps += [ "//remoting/host:remoting_native_messaging_manifests" ]
64 }
65
66 if (!is_chromeos && !is_android) {
64 deps += [ 67 deps += [
65 "//remoting/host:remoting_start_host", 68 "//remoting/host:remoting_start_host",
66 "//remoting/host/it2me:remote_assistance_host", 69 "//remoting/host/it2me:remote_assistance_host",
67 ] 70 ]
68 } 71 }
69 } 72 }
70 73
71 if (enable_me2me_host) { 74 if (enable_me2me_host) {
72 deps += [ "//remoting/host:remoting_me2me_host" ] 75 deps += [ "//remoting/host:remoting_me2me_host" ]
73 if (is_chrome_branded) { 76 if (is_chrome_branded) {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 217
215 if (enable_webrtc) { 218 if (enable_webrtc) {
216 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 219 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
217 } 220 }
218 } 221 }
219 } 222 }
220 } else { 223 } else {
221 group("remoting_unittests") { 224 group("remoting_unittests") {
222 } 225 }
223 } 226 }
OLDNEW
« no previous file with comments | « no previous file | remoting/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698