| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 "win/rdp_client_unittest.cc", | 313 "win/rdp_client_unittest.cc", |
| 314 "win/worker_process_launcher_unittest.cc", | 314 "win/worker_process_launcher_unittest.cc", |
| 315 ] | 315 ] |
| 316 | 316 |
| 317 if (use_ozone || is_chromeos) { | 317 if (use_ozone || is_chromeos) { |
| 318 sources -= [ "local_input_monitor_unittest.cc" ] | 318 sources -= [ "local_input_monitor_unittest.cc" ] |
| 319 } | 319 } |
| 320 if (is_chromeos) { | 320 if (is_chromeos) { |
| 321 sources -= [ "linux/x_server_clipboard_unittest.cc" ] | 321 sources -= [ "linux/x_server_clipboard_unittest.cc" ] |
| 322 } | 322 } |
| 323 if (is_android) { | |
| 324 sources -= [ "it2me/it2me_native_messaging_host_unittest.cc" ] | |
| 325 } | |
| 326 | 323 |
| 327 configs += [ "//remoting:version" ] | 324 configs += [ "//remoting:version" ] |
| 328 | 325 |
| 329 deps = [ | 326 deps = [ |
| 330 ":host", | 327 ":host", |
| 331 ":test_support", | 328 ":test_support", |
| 332 "//remoting/host/it2me:common", | 329 "//remoting/host/it2me:common", |
| 333 "//remoting/host/native_messaging", | 330 "//remoting/host/native_messaging", |
| 334 "//remoting/host/setup", | 331 "//remoting/host/setup", |
| 335 "//remoting/proto", | 332 "//remoting/proto", |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1123 "--target_arch", | 1120 "--target_arch", |
| 1124 "$target_cpu", | 1121 "$target_cpu", |
| 1125 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 1122 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 1126 root_build_dir), | 1123 root_build_dir), |
| 1127 rebase_path(outputs[0], root_build_dir), | 1124 rebase_path(outputs[0], root_build_dir), |
| 1128 ] | 1125 ] |
| 1129 } | 1126 } |
| 1130 } | 1127 } |
| 1131 } | 1128 } |
| 1132 } | 1129 } |
| OLD | NEW |