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

Side by Side Diff: remoting/host/BUILD.gn

Issue 2152953002: Refactoring Native Messaging Host process launching code into its own file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR feedback. Created 4 years, 4 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 | « no previous file | remoting/host/setup/me2me_native_messaging_host.h » ('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("//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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 } 354 }
355 if (use_ozone || is_chromeos) { 355 if (use_ozone || is_chromeos) {
356 sources -= [ "local_input_monitor_unittest.cc" ] 356 sources -= [ "local_input_monitor_unittest.cc" ]
357 } 357 }
358 if (is_chromeos) { 358 if (is_chromeos) {
359 sources -= [ "linux/x_server_clipboard_unittest.cc" ] 359 sources -= [ "linux/x_server_clipboard_unittest.cc" ]
360 } 360 }
361 if (is_android) { 361 if (is_android) {
362 sources -= [ "it2me/it2me_native_messaging_host_unittest.cc" ] 362 sources -= [ "it2me/it2me_native_messaging_host_unittest.cc" ]
363 } 363 }
364 if (is_win) {
365 sources += [
366 "win/launch_native_messaging_host_process.cc",
367 "win/launch_native_messaging_host_process.h",
368 ]
369 }
364 370
365 configs += [ "//remoting:version" ] 371 configs += [ "//remoting:version" ]
366 372
367 deps = [ 373 deps = [
368 ":host", 374 ":host",
369 ":test_support", 375 ":test_support",
370 "//remoting/host/it2me:common", 376 "//remoting/host/it2me:common",
371 "//remoting/host/native_messaging", 377 "//remoting/host/native_messaging",
372 "//remoting/host/setup", 378 "//remoting/host/setup",
373 "//remoting/proto", 379 "//remoting/proto",
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 "setup/me2me_native_messaging_host_main.h", 589 "setup/me2me_native_messaging_host_main.h",
584 "setup/start_host_main.cc", 590 "setup/start_host_main.cc",
585 "setup/start_host_main.h", 591 "setup/start_host_main.h",
586 "win/chromoting_lib.rc", 592 "win/chromoting_lib.rc",
587 "win/chromoting_module.cc", 593 "win/chromoting_module.cc",
588 "win/chromoting_module.h", 594 "win/chromoting_module.h",
589 "win/core.cc", 595 "win/core.cc",
590 "win/core_resource.h", 596 "win/core_resource.h",
591 "win/host_service.cc", 597 "win/host_service.cc",
592 "win/host_service.h", 598 "win/host_service.h",
599 "win/launch_native_messaging_host_process.cc",
600 "win/launch_native_messaging_host_process.h",
593 "win/omaha.cc", 601 "win/omaha.cc",
594 "win/omaha.h", 602 "win/omaha.h",
595 "win/rdp_desktop_session.cc", 603 "win/rdp_desktop_session.cc",
596 "win/rdp_desktop_session.h", 604 "win/rdp_desktop_session.h",
597 "win/unprivileged_process_delegate.cc", 605 "win/unprivileged_process_delegate.cc",
598 "win/unprivileged_process_delegate.h", 606 "win/unprivileged_process_delegate.h",
599 "win/wts_session_process_delegate.cc", 607 "win/wts_session_process_delegate.cc",
600 "win/wts_session_process_delegate.h", 608 "win/wts_session_process_delegate.h",
601 "worker_process_ipc_delegate.h", 609 "worker_process_ipc_delegate.h",
602 ] 610 ]
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 root_build_dir), 1639 root_build_dir),
1632 rebase_path(outputs[0], root_build_dir), 1640 rebase_path(outputs[0], root_build_dir),
1633 ] 1641 ]
1634 } 1642 }
1635 } else { 1643 } else {
1636 group("remoting_host_installation") { 1644 group("remoting_host_installation") {
1637 } 1645 }
1638 } 1646 }
1639 } 1647 }
1640 } 1648 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/setup/me2me_native_messaging_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698