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 source_set("security_key") { | 7 source_set("security_key") { |
8 sources = [ | 8 sources = [ |
9 "security_key_auth_handler.h", | 9 "security_key_auth_handler.h", |
10 "security_key_auth_handler_posix.cc", | 10 "security_key_auth_handler_posix.cc", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 } | 55 } |
56 | 56 |
57 if (is_win) { | 57 if (is_win) { |
58 executable("remote_security_key") { | 58 executable("remote_security_key") { |
59 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 59 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
60 | 60 |
61 defines = host_predefines + [ "BINARY=BINARY_REMOTE_SECURITY_KEY" ] | 61 defines = host_predefines + [ "BINARY=BINARY_REMOTE_SECURITY_KEY" ] |
62 | 62 |
63 deps = [ | 63 deps = [ |
64 "//build/win:default_exe_manifest", | 64 "//build/win:default_exe_manifest", |
65 "//remoting/host:remoting_core", | 65 "//remoting/host/win:remoting_core", |
66 "//remoting/host:remoting_windows_resources", | 66 "//remoting/host/win:remoting_windows_resources", |
67 ] | 67 ] |
68 | 68 |
69 sources = [ | 69 sources = [ |
70 "$root_gen_dir/remoting/version.rc", | 70 "$root_gen_dir/remoting/version.rc", |
71 "remote_security_key_entry_point.cc", | 71 "remote_security_key_entry_point.cc", |
72 ] | 72 ] |
73 } | 73 } |
74 } | 74 } |
75 | 75 |
76 source_set("unit_tests") { | 76 source_set("unit_tests") { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "//remoting/proto", | 112 "//remoting/proto", |
113 "//testing/gtest", | 113 "//testing/gtest", |
114 ] | 114 ] |
115 | 115 |
116 public_deps = [ | 116 public_deps = [ |
117 "//testing/gmock", | 117 "//testing/gmock", |
118 "//third_party/protobuf:protobuf_lite", | 118 "//third_party/protobuf:protobuf_lite", |
119 "//third_party/webrtc/modules/desktop_capture", | 119 "//third_party/webrtc/modules/desktop_capture", |
120 ] | 120 ] |
121 } | 121 } |
OLD | NEW |