OLD | NEW |
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 if (is_android) { |
| 16 sources -= [ |
| 17 "it2me_native_messaging_host.cc", |
| 18 "it2me_native_messaging_host.h", |
| 19 ] |
| 20 } |
| 21 |
15 configs += [ | 22 configs += [ |
16 "//build/config/compiler:wexit_time_destructors", | 23 "//build/config/compiler:wexit_time_destructors", |
17 "//remoting:version", | 24 "//remoting:version", |
18 ] | 25 ] |
19 | 26 |
20 deps = [ | 27 deps = [ |
21 "//base:i18n", | 28 "//base:i18n", |
22 "//net:net", | 29 "//net:net", |
23 "//remoting/base", | 30 "//remoting/base", |
24 "//remoting/host", | 31 "//remoting/host", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 if (enable_webrtc) { | 91 if (enable_webrtc) { |
85 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 92 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
86 } | 93 } |
87 | 94 |
88 if (is_desktop_linux) { | 95 if (is_desktop_linux) { |
89 deps += [ "//build/config/linux/gtk2" ] | 96 deps += [ "//build/config/linux/gtk2" ] |
90 } | 97 } |
91 } | 98 } |
92 } | 99 } |
93 } | 100 } |
OLD | NEW |