| 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/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 import("//remoting/remoting_enable.gni") | 10 import("//remoting/remoting_enable.gni") |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 sources -= [ "local_input_monitor_unittest.cc" ] | 359 sources -= [ "local_input_monitor_unittest.cc" ] |
| 360 } | 360 } |
| 361 if (is_chromeos) { | 361 if (is_chromeos) { |
| 362 sources -= [ "linux/x_server_clipboard_unittest.cc" ] | 362 sources -= [ "linux/x_server_clipboard_unittest.cc" ] |
| 363 } | 363 } |
| 364 if (is_android) { | 364 if (is_android) { |
| 365 sources -= [ "it2me/it2me_native_messaging_host_unittest.cc" ] | 365 sources -= [ "it2me/it2me_native_messaging_host_unittest.cc" ] |
| 366 } | 366 } |
| 367 if (is_win) { | 367 if (is_win) { |
| 368 sources += [ | 368 sources += [ |
| 369 "win/elevated_native_messaging_host.cc", |
| 370 "win/elevated_native_messaging_host.h", |
| 369 "win/launch_native_messaging_host_process.cc", | 371 "win/launch_native_messaging_host_process.cc", |
| 370 "win/launch_native_messaging_host_process.h", | 372 "win/launch_native_messaging_host_process.h", |
| 371 ] | 373 ] |
| 372 } | 374 } |
| 373 | 375 |
| 374 configs += [ "//remoting:version" ] | 376 configs += [ "//remoting:version" ] |
| 375 | 377 |
| 376 deps = [ | 378 deps = [ |
| 377 ":host", | 379 ":host", |
| 378 ":test_support", | 380 ":test_support", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 "setup/host_starter.h", | 592 "setup/host_starter.h", |
| 591 "setup/me2me_native_messaging_host_main.cc", | 593 "setup/me2me_native_messaging_host_main.cc", |
| 592 "setup/me2me_native_messaging_host_main.h", | 594 "setup/me2me_native_messaging_host_main.h", |
| 593 "setup/start_host_main.cc", | 595 "setup/start_host_main.cc", |
| 594 "setup/start_host_main.h", | 596 "setup/start_host_main.h", |
| 595 "win/chromoting_lib.rc", | 597 "win/chromoting_lib.rc", |
| 596 "win/chromoting_module.cc", | 598 "win/chromoting_module.cc", |
| 597 "win/chromoting_module.h", | 599 "win/chromoting_module.h", |
| 598 "win/core.cc", | 600 "win/core.cc", |
| 599 "win/core_resource.h", | 601 "win/core_resource.h", |
| 602 "win/elevated_native_messaging_host.cc", |
| 603 "win/elevated_native_messaging_host.h", |
| 600 "win/host_service.cc", | 604 "win/host_service.cc", |
| 601 "win/host_service.h", | 605 "win/host_service.h", |
| 602 "win/launch_native_messaging_host_process.cc", | 606 "win/launch_native_messaging_host_process.cc", |
| 603 "win/launch_native_messaging_host_process.h", | 607 "win/launch_native_messaging_host_process.h", |
| 604 "win/omaha.cc", | 608 "win/omaha.cc", |
| 605 "win/omaha.h", | 609 "win/omaha.h", |
| 606 "win/rdp_desktop_session.cc", | 610 "win/rdp_desktop_session.cc", |
| 607 "win/rdp_desktop_session.h", | 611 "win/rdp_desktop_session.h", |
| 608 "win/unprivileged_process_delegate.cc", | 612 "win/unprivileged_process_delegate.cc", |
| 609 "win/unprivileged_process_delegate.h", | 613 "win/unprivileged_process_delegate.h", |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1662 root_build_dir), | 1666 root_build_dir), |
| 1663 rebase_path(outputs[0], root_build_dir), | 1667 rebase_path(outputs[0], root_build_dir), |
| 1664 ] | 1668 ] |
| 1665 } | 1669 } |
| 1666 } else { | 1670 } else { |
| 1667 group("remoting_host_installation") { | 1671 group("remoting_host_installation") { |
| 1668 } | 1672 } |
| 1669 } | 1673 } |
| 1670 } | 1674 } |
| 1671 } | 1675 } |
| OLD | NEW |