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

Side by Side Diff: remoting/remoting_test.gypi

Issue 880273006: Adding the AccessTokenFetcher and Environment class to the app remoting test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updating AccessTokenFetcher Unittests to use the FakeURLFetcherFactory Created 5 years, 10 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'remoting_test_common', 8 'target_name': 'remoting_test_common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 23 matching lines...) Expand all
34 'protocol/fake_session.cc', 34 'protocol/fake_session.cc',
35 'protocol/fake_session.h', 35 'protocol/fake_session.h',
36 'protocol/fake_stream_socket.cc', 36 'protocol/fake_stream_socket.cc',
37 'protocol/fake_stream_socket.h', 37 'protocol/fake_stream_socket.h',
38 'protocol/protocol_mock_objects.cc', 38 'protocol/protocol_mock_objects.cc',
39 'protocol/protocol_mock_objects.h', 39 'protocol/protocol_mock_objects.h',
40 'signaling/fake_signal_strategy.cc', 40 'signaling/fake_signal_strategy.cc',
41 'signaling/fake_signal_strategy.h', 41 'signaling/fake_signal_strategy.h',
42 'signaling/mock_signal_strategy.cc', 42 'signaling/mock_signal_strategy.cc',
43 'signaling/mock_signal_strategy.h', 43 'signaling/mock_signal_strategy.h',
44 'test/access_token_fetcher.cc',
45 'test/app_remoting_test_driver_environment.cc',
46 'test/fake_access_token_fetcher.cc',
44 'test/fake_network_dispatcher.cc', 47 'test/fake_network_dispatcher.cc',
45 'test/fake_network_dispatcher.h', 48 'test/fake_network_dispatcher.h',
46 'test/fake_network_manager.cc', 49 'test/fake_network_manager.cc',
47 'test/fake_network_manager.h', 50 'test/fake_network_manager.h',
48 'test/fake_port_allocator.cc', 51 'test/fake_port_allocator.cc',
49 'test/fake_port_allocator.h', 52 'test/fake_port_allocator.h',
50 'test/fake_socket_factory.cc', 53 'test/fake_socket_factory.cc',
51 'test/fake_socket_factory.h', 54 'test/fake_socket_factory.h',
52 'test/leaky_bucket.cc', 55 'test/leaky_bucket.cc',
53 'test/leaky_bucket.h', 56 'test/leaky_bucket.h',
57 'test/mock_access_token_fetcher.cc',
58 'test/refresh_token_store.cc',
54 ], 59 ],
55 'conditions': [ 60 'conditions': [
56 ['enable_remoting_host == 0', { 61 ['enable_remoting_host == 0', {
57 'dependencies!': [ 62 'dependencies!': [
58 'remoting_host', 63 'remoting_host',
59 ], 64 ],
60 'sources/': [ 65 'sources/': [
61 ['exclude', '^host/'], 66 ['exclude', '^host/'],
62 ] 67 ]
63 }], 68 }],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'protocol/ppapi_module_stub.cc', 218 'protocol/ppapi_module_stub.cc',
214 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 219 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
215 'protocol/third_party_authenticator_unittest.cc', 220 'protocol/third_party_authenticator_unittest.cc',
216 'protocol/v2_authenticator_unittest.cc', 221 'protocol/v2_authenticator_unittest.cc',
217 'signaling/fake_signal_strategy.cc', 222 'signaling/fake_signal_strategy.cc',
218 'signaling/fake_signal_strategy.h', 223 'signaling/fake_signal_strategy.h',
219 'signaling/iq_sender_unittest.cc', 224 'signaling/iq_sender_unittest.cc',
220 'signaling/log_to_server_unittest.cc', 225 'signaling/log_to_server_unittest.cc',
221 'signaling/server_log_entry_unittest.cc', 226 'signaling/server_log_entry_unittest.cc',
222 'signaling/server_log_entry_unittest.h', 227 'signaling/server_log_entry_unittest.h',
228 'test/access_token_fetcher_unittest.cc',
229 'test/app_remoting_test_driver_environment_unittest.cc'
223 ], 230 ],
224 'conditions': [ 231 'conditions': [
225 [ 'OS=="win"', { 232 [ 'OS=="win"', {
226 'defines': [ 233 'defines': [
227 '_ATL_NO_EXCEPTIONS', 234 '_ATL_NO_EXCEPTIONS',
228 ], 235 ],
229 'include_dirs': [ 236 'include_dirs': [
230 '../breakpad/src', 237 '../breakpad/src',
231 ], 238 ],
232 'link_settings': { 239 'link_settings': {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 'dependencies': [ 424 'dependencies': [
418 '../base/allocator/allocator.gyp:allocator', 425 '../base/allocator/allocator.gyp:allocator',
419 ], 426 ],
420 }], 427 }],
421 ], # end of 'conditions' 428 ], # end of 'conditions'
422 }, # end of target 'remoting_perftests' 429 }, # end of target 'remoting_perftests'
423 ] 430 ]
424 }] 431 }]
425 ] 432 ]
426 } 433 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698