| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 group("all_tests") { | 7 group("all_tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 } | 9 } |
| 10 | 10 |
| 11 if (enable_me2me_host) { | 11 if (enable_me2me_host) { |
| 12 executable("remoting_user_session") { | 12 executable("remoting_user_session") { |
| 13 sources = [ | 13 sources = [ |
| 14 "remoting_user_session.cc", | 14 "remoting_user_session.cc", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//build/config/sanitizers:deps", |
| 19 ] | 20 ] |
| 20 | 21 |
| 21 libs = [ "pam" ] | 22 libs = [ "pam" ] |
| 22 } | 23 } |
| 23 | 24 |
| 24 copy("remoting_me2me_host_copy_script") { | 25 copy("remoting_me2me_host_copy_script") { |
| 25 sources = [ | 26 sources = [ |
| 26 "linux_me2me_host.py", | 27 "linux_me2me_host.py", |
| 27 ] | 28 ] |
| 28 outputs = [ | 29 outputs = [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//remoting/host/setup", | 100 "//remoting/host/setup", |
| 100 ] | 101 ] |
| 101 | 102 |
| 102 # The |major|, |build| and |patch| versions are inherited from Chrome. | 103 # The |major|, |build| and |patch| versions are inherited from Chrome. |
| 103 # Since Chrome's |minor| version is always '0', we replace it with a | 104 # Since Chrome's |minor| version is always '0', we replace it with a |
| 104 # Chromoting-specific patch version. | 105 # Chromoting-specific patch version. |
| 105 defines = | 106 defines = |
| 106 [ "VERSION=" + "$chrome_version_major" + "." + "$remoting_version_patch" + | 107 [ "VERSION=" + "$chrome_version_major" + "." + "$remoting_version_patch" + |
| 107 "." + "$chrome_version_build" + "." + "$chrome_version_patch" ] | 108 "." + "$chrome_version_build" + "." + "$chrome_version_patch" ] |
| 108 } | 109 } |
| OLD | NEW |