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

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

Issue 2808863003: Fix ASAN component builds by adding proper dependencies to executable targets. (Closed)
Patch Set: Created 3 years, 8 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 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
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 }
OLDNEW
« no previous file with comments | « net/tools/transport_security_state_generator/BUILD.gn ('k') | services/service_manager/tests/connect/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698