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

Side by Side Diff: remoting/protocol/BUILD.gn

Issue 976233003: Adding the base ChromotingInstance implementation and unittests. This class will be used by the ap… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a unit test name Created 5 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/remoting_srcs.gni") 5 import("//remoting/remoting_srcs.gni")
6 6
7 source_set("protocol") { 7 source_set("protocol") {
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources,
9 ".", 9 ".",
10 "//remoting") 10 "//remoting")
(...skipping 17 matching lines...) Expand all
28 "//remoting/codec", 28 "//remoting/codec",
29 ] 29 ]
30 } 30 }
31 31
32 source_set("test_support") { 32 source_set("test_support") {
33 testonly = true 33 testonly = true
34 34
35 sources = [ 35 sources = [
36 "fake_authenticator.cc", 36 "fake_authenticator.cc",
37 "fake_authenticator.h", 37 "fake_authenticator.h",
38 "fake_connection_to_host.cc",
39 "fake_connection_to_host.h",
38 "fake_datagram_socket.cc", 40 "fake_datagram_socket.cc",
39 "fake_datagram_socket.h", 41 "fake_datagram_socket.h",
40 "fake_session.cc", 42 "fake_session.cc",
41 "fake_session.h", 43 "fake_session.h",
42 "fake_stream_socket.cc", 44 "fake_stream_socket.cc",
43 "fake_stream_socket.h", 45 "fake_stream_socket.h",
44 "protocol_mock_objects.cc", 46 "protocol_mock_objects.cc",
45 "protocol_mock_objects.h", 47 "protocol_mock_objects.h",
46 ] 48 ]
47 49
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 "third_party_authenticator_unittest.cc", 83 "third_party_authenticator_unittest.cc",
82 "v2_authenticator_unittest.cc", 84 "v2_authenticator_unittest.cc",
83 ] 85 ]
84 86
85 deps = [ 87 deps = [
86 ":test_support", 88 ":test_support",
87 "//testing/gmock", 89 "//testing/gmock",
88 "//testing/gtest", 90 "//testing/gtest",
89 ] 91 ]
90 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698