| 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/util/process_version.gni") | 5 import("//build/util/process_version.gni") |
| 6 import("//remoting/build/config/remoting_build.gni") | 6 import("//remoting/build/config/remoting_build.gni") |
| 7 | 7 |
| 8 group("all_tests") { | 8 group("all_tests") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 deps += [ "//build/config/linux/gtk2" ] | 751 deps += [ "//build/config/linux/gtk2" ] |
| 752 } | 752 } |
| 753 } | 753 } |
| 754 if ((is_linux && !is_chromeos) || is_mac) { | 754 if ((is_linux && !is_chromeos) || is_mac) { |
| 755 libs = [ "pam" ] | 755 libs = [ "pam" ] |
| 756 } | 756 } |
| 757 | 757 |
| 758 if (is_mac && is_official_build) { | 758 if (is_mac && is_official_build) { |
| 759 sources += [ "internal/internal_mac-inl.h" ] | 759 sources += [ "internal/internal_mac-inl.h" ] |
| 760 } | 760 } |
| 761 | |
| 762 if (remoting_multi_process != 0) { | |
| 763 deps += [ "//mojo/edk/system" ] | |
| 764 } | |
| 765 } | 761 } |
| 766 | 762 |
| 767 if (is_win) { | 763 if (is_win) { |
| 768 group("remoting_me2me_host") { | 764 group("remoting_me2me_host") { |
| 769 deps = [ | 765 deps = [ |
| 770 "//remoting/host/win:remoting_me2me_host", | 766 "//remoting/host/win:remoting_me2me_host", |
| 771 ] | 767 ] |
| 772 } | 768 } |
| 773 group("remoting_native_messaging_host") { | 769 group("remoting_native_messaging_host") { |
| 774 deps = [ | 770 deps = [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 group("remoting_me2me_host_archive") { | 833 group("remoting_me2me_host_archive") { |
| 838 deps = [ | 834 deps = [ |
| 839 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 835 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
| 840 ] | 836 ] |
| 841 } | 837 } |
| 842 } else { | 838 } else { |
| 843 group("remoting_me2me_host_archive") { | 839 group("remoting_me2me_host_archive") { |
| 844 } | 840 } |
| 845 } | 841 } |
| 846 } | 842 } |
| OLD | NEW |