| 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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 deps += [ | 880 deps += [ |
| 881 ":remoting_host_resources", | 881 ":remoting_host_resources", |
| 882 ":remoting_host_xibs", | 882 ":remoting_host_xibs", |
| 883 ":remoting_infoplist_strings", | 883 ":remoting_infoplist_strings", |
| 884 "//remoting/resources:copy_locales", | 884 "//remoting/resources:copy_locales", |
| 885 ] | 885 ] |
| 886 } | 886 } |
| 887 } | 887 } |
| 888 | 888 |
| 889 if (is_linux) { | 889 if (is_linux) { |
| 890 executable("remoting_user_session") { |
| 891 sources = [ |
| 892 "linux/remoting_user_session.cc", |
| 893 ] |
| 894 |
| 895 deps = [ |
| 896 "//base", |
| 897 ] |
| 898 |
| 899 libs = [ "pam" ] |
| 900 } |
| 890 copy("remoting_me2me_host_copy_script") { | 901 copy("remoting_me2me_host_copy_script") { |
| 891 sources = [ | 902 sources = [ |
| 892 "linux/linux_me2me_host.py", | 903 "linux/linux_me2me_host.py", |
| 893 ] | 904 ] |
| 894 outputs = [ | 905 outputs = [ |
| 895 "$root_build_dir/remoting/chrome-remote-desktop", | 906 "$root_build_dir/remoting/chrome-remote-desktop", |
| 896 ] | 907 ] |
| 897 } | 908 } |
| 898 copy("remoting_me2me_host_copy_host") { | 909 copy("remoting_me2me_host_copy_host") { |
| 899 sources = [ | 910 sources = [ |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 rebase_path("//"), | 1085 rebase_path("//"), |
| 1075 "-o", | 1086 "-o", |
| 1076 rebase_path("$root_build_dir"), | 1087 rebase_path("$root_build_dir"), |
| 1077 ] | 1088 ] |
| 1078 | 1089 |
| 1079 deps = [ | 1090 deps = [ |
| 1080 ":remoting_me2me_host", | 1091 ":remoting_me2me_host", |
| 1081 ":remoting_native_messaging_host", | 1092 ":remoting_native_messaging_host", |
| 1082 ":remoting_native_messaging_manifests", | 1093 ":remoting_native_messaging_manifests", |
| 1083 ":remoting_start_host", | 1094 ":remoting_start_host", |
| 1095 ":remoting_user_session", |
| 1084 "//remoting/host/it2me:remote_assistance_host", | 1096 "//remoting/host/it2me:remote_assistance_host", |
| 1085 "//remoting/resources", | 1097 "//remoting/resources", |
| 1086 "//third_party/icu:icudata", | 1098 "//third_party/icu:icudata", |
| 1087 ] | 1099 ] |
| 1088 } | 1100 } |
| 1089 } else if (is_win) { | 1101 } else if (is_win) { |
| 1090 group("remoting_me2me_host_archive") { | 1102 group("remoting_me2me_host_archive") { |
| 1091 deps = [ | 1103 deps = [ |
| 1092 "//remoting/host/installer/win:remoting_me2me_host_archive", | 1104 "//remoting/host/installer/win:remoting_me2me_host_archive", |
| 1093 ] | 1105 ] |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1376 "mac/me2me_preference_pane_disable.xib", | 1388 "mac/me2me_preference_pane_disable.xib", |
| 1377 | 1389 |
| 1378 #"mac/me2me_preference_pane-Info.plist", | 1390 #"mac/me2me_preference_pane-Info.plist", |
| 1379 ] | 1391 ] |
| 1380 } | 1392 } |
| 1381 } else { | 1393 } else { |
| 1382 group("remoting_me2me_host_archive") { | 1394 group("remoting_me2me_host_archive") { |
| 1383 } | 1395 } |
| 1384 } | 1396 } |
| 1385 } | 1397 } |
| OLD | NEW |