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

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

Issue 2323153002: Add PAM session wrapper (Closed)
Patch Set: Add PAM session wrapper Created 4 years, 3 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
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 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 deps += [ 1354 deps += [
1355 ":remoting_host_resources", 1355 ":remoting_host_resources",
1356 ":remoting_host_xibs", 1356 ":remoting_host_xibs",
1357 ":remoting_infoplist_strings", 1357 ":remoting_infoplist_strings",
1358 "//remoting/resources:copy_locales", 1358 "//remoting/resources:copy_locales",
1359 ] 1359 ]
1360 } 1360 }
1361 } 1361 }
1362 1362
1363 if (is_linux) { 1363 if (is_linux) {
1364 executable("remoting_pam_session") {
Jamie 2016/09/09 18:27:11 I think it would be better to name this according
rkjnsn 2016/09/09 21:24:30 remoting_user_session? I think the essence of what
Jamie 2016/09/12 20:36:51 SGTM.
1365 sources = [
1366 "linux/remoting_pam_session.cc",
1367 ]
1368
1369 deps = [
1370 "//base",
1371 ]
1372
1373 libs = [ "pam" ]
1374 }
1364 copy("remoting_me2me_host_copy_script") { 1375 copy("remoting_me2me_host_copy_script") {
1365 sources = [ 1376 sources = [
1366 "linux/linux_me2me_host.py", 1377 "linux/linux_me2me_host.py",
1367 ] 1378 ]
1368 outputs = [ 1379 outputs = [
1369 "$root_build_dir/remoting/chrome-remote-desktop", 1380 "$root_build_dir/remoting/chrome-remote-desktop",
1370 ] 1381 ]
1371 } 1382 }
1372 copy("remoting_me2me_host_copy_host") { 1383 copy("remoting_me2me_host_copy_host") {
1373 sources = [ 1384 sources = [
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
1963 root_build_dir), 1974 root_build_dir),
1964 rebase_path(outputs[0], root_build_dir), 1975 rebase_path(outputs[0], root_build_dir),
1965 ] 1976 ]
1966 } 1977 }
1967 } else { 1978 } else {
1968 group("remoting_host_installation") { 1979 group("remoting_host_installation") {
1969 } 1980 }
1970 } 1981 }
1971 } 1982 }
1972 } 1983 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/linux/remoting_pam_session.cc » ('j') | remoting/host/linux/remoting_pam_session.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698