| 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("//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_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_locales.gni") | 9 import("//remoting/remoting_locales.gni") |
| 10 import("//remoting/remoting_options.gni") | 10 import("//remoting/remoting_options.gni") |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 if (is_win) { | 187 if (is_win) { |
| 188 deps += [ | 188 deps += [ |
| 189 ":messages", | 189 ":messages", |
| 190 ":remoting_lib_idl", | 190 ":remoting_lib_idl", |
| 191 ] | 191 ] |
| 192 } | 192 } |
| 193 | 193 |
| 194 if (enable_webrtc) { | 194 if (enable_webrtc) { |
| 195 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 195 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 196 } | 196 } |
| 197 |
| 198 if (is_android) { |
| 199 sources -= [ |
| 200 "single_window_desktop_environment.cc", |
| 201 "single_window_desktop_environment.h", |
| 202 ] |
| 203 } |
| 197 } | 204 } |
| 198 | 205 |
| 199 source_set("test_support") { | 206 source_set("test_support") { |
| 200 testonly = true | 207 testonly = true |
| 201 | 208 |
| 202 sources = [ | 209 sources = [ |
| 203 "fake_desktop_environment.cc", | 210 "fake_desktop_environment.cc", |
| 204 "fake_desktop_environment.h", | 211 "fake_desktop_environment.h", |
| 205 "fake_host_extension.cc", | 212 "fake_host_extension.cc", |
| 206 "fake_host_extension.h", | 213 "fake_host_extension.h", |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 "//remoting/resources", | 960 "//remoting/resources", |
| 954 "//third_party/icu:icudata", | 961 "//third_party/icu:icudata", |
| 955 ] | 962 ] |
| 956 } | 963 } |
| 957 } else { | 964 } else { |
| 958 group("remoting_me2me_host_archive") { | 965 group("remoting_me2me_host_archive") { |
| 959 } | 966 } |
| 960 } | 967 } |
| 961 } | 968 } |
| 962 } | 969 } |
| OLD | NEW |