| 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 18 matching lines...) Expand all Loading... |
| 29 "security_key_message_reader_impl.cc", | 29 "security_key_message_reader_impl.cc", |
| 30 "security_key_message_reader_impl.h", | 30 "security_key_message_reader_impl.h", |
| 31 "security_key_message_writer.h", | 31 "security_key_message_writer.h", |
| 32 "security_key_message_writer_impl.cc", | 32 "security_key_message_writer_impl.cc", |
| 33 "security_key_message_writer_impl.h", | 33 "security_key_message_writer_impl.h", |
| 34 "security_key_socket.cc", | 34 "security_key_socket.cc", |
| 35 "security_key_socket.h", | 35 "security_key_socket.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 deps = [ | 38 deps = [ |
| 39 "//ipc", |
| 39 "//mojo/edk/system", | 40 "//mojo/edk/system", |
| 40 "//remoting/proto", | 41 "//remoting/proto", |
| 41 "//third_party/webrtc/modules/desktop_capture", | 42 "//third_party/webrtc/modules/desktop_capture", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| 44 | 45 |
| 45 source_set("main") { | 46 source_set("main") { |
| 46 defines = [ "HOST_IMPLEMENTATION" ] | 47 defines = [ "HOST_IMPLEMENTATION" ] |
| 47 | 48 |
| 48 if (is_win) { | 49 if (is_win) { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "fake_security_key_ipc_client.h", | 106 "fake_security_key_ipc_client.h", |
| 106 "fake_security_key_ipc_server.cc", | 107 "fake_security_key_ipc_server.cc", |
| 107 "fake_security_key_ipc_server.h", | 108 "fake_security_key_ipc_server.h", |
| 108 "fake_security_key_message_reader.cc", | 109 "fake_security_key_message_reader.cc", |
| 109 "fake_security_key_message_reader.h", | 110 "fake_security_key_message_reader.h", |
| 110 "fake_security_key_message_writer.cc", | 111 "fake_security_key_message_writer.cc", |
| 111 "fake_security_key_message_writer.h", | 112 "fake_security_key_message_writer.h", |
| 112 ] | 113 ] |
| 113 | 114 |
| 114 deps = [ | 115 deps = [ |
| 116 "//ipc", |
| 115 "//remoting/proto", | 117 "//remoting/proto", |
| 116 "//testing/gtest", | 118 "//testing/gtest", |
| 117 ] | 119 ] |
| 118 | 120 |
| 119 public_deps = [ | 121 public_deps = [ |
| 120 "//testing/gmock", | 122 "//testing/gmock", |
| 121 "//third_party/protobuf:protobuf_lite", | 123 "//third_party/protobuf:protobuf_lite", |
| 122 "//third_party/webrtc/modules/desktop_capture", | 124 "//third_party/webrtc/modules/desktop_capture", |
| 123 ] | 125 ] |
| 124 } | 126 } |
| OLD | NEW |