| 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 "//build/config:exe_and_shlib_deps", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 libs = [ "pam" ] | 22 libs = [ "pam" ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 copy("remoting_me2me_host_copy_script") { | 25 copy("remoting_me2me_host_copy_script") { |
| 26 sources = [ | 26 sources = [ |
| 27 "linux_me2me_host.py", | 27 "linux_me2me_host.py", |
| 28 ] | 28 ] |
| 29 outputs = [ | 29 outputs = [ |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//remoting/resources", | 145 "//remoting/resources", |
| 146 "//skia", | 146 "//skia", |
| 147 "//testing/gmock", | 147 "//testing/gmock", |
| 148 "//testing/gtest", | 148 "//testing/gtest", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 if (!is_ios) { | 151 if (!is_ios) { |
| 152 deps += [ "//components/policy/core/browser:test_support" ] | 152 deps += [ "//components/policy/core/browser:test_support" ] |
| 153 } | 153 } |
| 154 } | 154 } |
| OLD | NEW |