| 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 } |
| 761 } | 765 } |
| 762 | 766 |
| 763 if (is_win) { | 767 if (is_win) { |
| 764 group("remoting_me2me_host") { | 768 group("remoting_me2me_host") { |
| 765 deps = [ | 769 deps = [ |
| 766 "//remoting/host/win:remoting_me2me_host", | 770 "//remoting/host/win:remoting_me2me_host", |
| 767 ] | 771 ] |
| 768 } | 772 } |
| 769 group("remoting_native_messaging_host") { | 773 group("remoting_native_messaging_host") { |
| 770 deps = [ | 774 deps = [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 group("remoting_me2me_host_archive") { | 837 group("remoting_me2me_host_archive") { |
| 834 deps = [ | 838 deps = [ |
| 835 "//remoting/host/installer/mac:remoting_me2me_host_archive", | 839 "//remoting/host/installer/mac:remoting_me2me_host_archive", |
| 836 ] | 840 ] |
| 837 } | 841 } |
| 838 } else { | 842 } else { |
| 839 group("remoting_me2me_host_archive") { | 843 group("remoting_me2me_host_archive") { |
| 840 } | 844 } |
| 841 } | 845 } |
| 842 } | 846 } |
| OLD | NEW |