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

Side by Side Diff: remoting/host/it2me/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 | « remoting/host/input_injector_android.cc ('k') | remoting/host/local_input_monitor_android.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//remoting/remoting_enable.gni") 6 import("//remoting/remoting_enable.gni")
7 import("//remoting/remoting_srcs.gni") 7 import("//remoting/remoting_srcs.gni")
8 8
9 source_set("common") { 9 source_set("common") {
10 sources = rebase_path( 10 sources = rebase_path(
11 remoting_host_srcs_gypi_values.remoting_it2me_host_static_sources, 11 remoting_host_srcs_gypi_values.remoting_it2me_host_static_sources,
12 ".", 12 ".",
13 "//remoting") 13 "//remoting")
14 14
15 configs += [ 15 configs += [
16 "//build/config/compiler:wexit_time_destructors", 16 "//build/config/compiler:wexit_time_destructors",
17 "//remoting:version", 17 "//remoting:version",
18 ] 18 ]
19 19
20 deps = [ 20 deps = [
21 "//base:i18n", 21 "//base:i18n",
22 "//net:net", 22 "//net:net",
23 "//remoting/base", 23 "//remoting/base",
24 "//remoting/host", 24 "//remoting/host",
25 "//remoting/protocol", 25 "//remoting/protocol",
26 "//remoting/resources", 26 "//remoting/resources",
27 ] 27 ]
28 } 28 }
29 29
30 if (!is_chromeos && enable_remoting_host) { 30 if (!is_chromeos && !is_android && enable_remoting_host) {
31 if (is_win) { 31 if (is_win) {
32 # GYP version: 32 # GYP version:
33 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host 33 # //remoting/remoting_host_win.gypi:remoting_it2me_native_messaging_host
34 executable("remote_assistance_host") { 34 executable("remote_assistance_host") {
35 configs += [ "//build/config/compiler:wexit_time_destructors" ] 35 configs += [ "//build/config/compiler:wexit_time_destructors" ]
36 36
37 deps = [ 37 deps = [
38 "//base/allocator", 38 "//base/allocator",
39 "//remoting/host:remoting_core", 39 "//remoting/host:remoting_core",
40 "//remoting/host:remoting_windows_resources", 40 "//remoting/host:remoting_windows_resources",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 if (enable_webrtc) { 84 if (enable_webrtc) {
85 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 85 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
86 } 86 }
87 87
88 if (is_desktop_linux) { 88 if (is_desktop_linux) {
89 deps += [ "//build/config/linux/gtk2" ] 89 deps += [ "//build/config/linux/gtk2" ]
90 } 90 }
91 } 91 }
92 } 92 }
93 } 93 }
OLDNEW
« no previous file with comments | « remoting/host/input_injector_android.cc ('k') | remoting/host/local_input_monitor_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698