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

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: Fixing one last windows compile issue 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
« no previous file with comments | « remoting/app_remoting_test.gyp ('k') | remoting/test/access_token_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 'protocol/ppapi_module_stub.cc', 219 'protocol/ppapi_module_stub.cc',
215 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 220 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
216 'protocol/third_party_authenticator_unittest.cc', 221 'protocol/third_party_authenticator_unittest.cc',
217 'protocol/v2_authenticator_unittest.cc', 222 'protocol/v2_authenticator_unittest.cc',
218 'signaling/fake_signal_strategy.cc', 223 'signaling/fake_signal_strategy.cc',
219 'signaling/fake_signal_strategy.h', 224 'signaling/fake_signal_strategy.h',
220 'signaling/iq_sender_unittest.cc', 225 'signaling/iq_sender_unittest.cc',
221 'signaling/log_to_server_unittest.cc', 226 'signaling/log_to_server_unittest.cc',
222 'signaling/server_log_entry_unittest.cc', 227 'signaling/server_log_entry_unittest.cc',
223 'signaling/server_log_entry_unittest.h', 228 'signaling/server_log_entry_unittest.h',
229 'test/access_token_fetcher_unittest.cc',
230 'test/app_remoting_test_driver_environment_unittest.cc'
224 ], 231 ],
225 'conditions': [ 232 'conditions': [
226 [ 'OS=="win"', { 233 [ 'OS=="win"', {
227 'defines': [ 234 'defines': [
228 '_ATL_NO_EXCEPTIONS', 235 '_ATL_NO_EXCEPTIONS',
229 ], 236 ],
230 'include_dirs': [ 237 'include_dirs': [
231 '../breakpad/src', 238 '../breakpad/src',
232 ], 239 ],
233 'link_settings': { 240 'link_settings': {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 'dependencies': [ 420 'dependencies': [
414 '../base/allocator/allocator.gyp:allocator', 421 '../base/allocator/allocator.gyp:allocator',
415 ], 422 ],
416 }], 423 }],
417 ], # end of 'conditions' 424 ], # end of 'conditions'
418 }, # end of target 'remoting_perftests' 425 }, # end of target 'remoting_perftests'
419 ] 426 ]
420 }] 427 }]
421 ] 428 ]
422 } 429 }
OLDNEW
« no previous file with comments | « remoting/app_remoting_test.gyp ('k') | remoting/test/access_token_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698