| 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 defines = [ "REMOTING_ENABLE_BREAKPAD" ] | 838 defines = [ "REMOTING_ENABLE_BREAKPAD" ] |
| 839 } | 839 } |
| 840 | 840 |
| 841 deps = [ | 841 deps = [ |
| 842 ":credits", | 842 ":credits", |
| 843 ":remoting_me2me_host_static", | 843 ":remoting_me2me_host_static", |
| 844 "//build/config/sanitizers:deps", | 844 "//build/config/sanitizers:deps", |
| 845 ] | 845 ] |
| 846 } | 846 } |
| 847 | 847 |
| 848 if (is_linux) { |
| 849 copy("remoting_me2me_host_copy_script") { |
| 850 sources = [ |
| 851 "linux/linux_me2me_host.py", |
| 852 ] |
| 853 outputs = [ |
| 854 "$root_build_dir/remoting/chrome-remote-desktop", |
| 855 ] |
| 856 } |
| 857 copy("remoting_me2me_host_copy_host") { |
| 858 sources = [ |
| 859 "linux/remoting_me2me_host_wrapper.sh", |
| 860 ] |
| 861 outputs = [ |
| 862 "$root_build_dir/remoting/chrome-remote-desktop-host", |
| 863 ] |
| 864 deps = [ |
| 865 ":remoting_me2me_host", |
| 866 ] |
| 867 } |
| 868 group("remoting_dev_me2me_host") { |
| 869 deps = [ |
| 870 ":remoting_me2me_host_copy_host", |
| 871 ":remoting_me2me_host_copy_script", |
| 872 ] |
| 873 } |
| 874 } |
| 875 |
| 848 executable("native_messaging_host") { | 876 executable("native_messaging_host") { |
| 849 sources = [ | 877 sources = [ |
| 850 "setup/me2me_native_messaging_host_entry_point.cc", | 878 "setup/me2me_native_messaging_host_entry_point.cc", |
| 851 "setup/me2me_native_messaging_host_main.cc", | 879 "setup/me2me_native_messaging_host_main.cc", |
| 852 "setup/me2me_native_messaging_host_main.h", | 880 "setup/me2me_native_messaging_host_main.h", |
| 853 ] | 881 ] |
| 854 | 882 |
| 855 deps = [ | 883 deps = [ |
| 856 ":remoting_infoplist_strings", | 884 ":remoting_infoplist_strings", |
| 857 "//base", | 885 "//base", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 "//remoting/resources", | 993 "//remoting/resources", |
| 966 "//third_party/icu:icudata", | 994 "//third_party/icu:icudata", |
| 967 ] | 995 ] |
| 968 } | 996 } |
| 969 } else { | 997 } else { |
| 970 group("remoting_me2me_host_archive") { | 998 group("remoting_me2me_host_archive") { |
| 971 } | 999 } |
| 972 } | 1000 } |
| 973 } | 1001 } |
| 974 } | 1002 } |
| OLD | NEW |