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

Side by Side Diff: remoting/remoting.gyp

Issue 12326090: Third Party authentication protocol. (Closed) Base URL: http://git.chromium.org/chromium/src.git@host_key_pair
Patch Set: TokenFetcher/Validator ownership, move parameters to Validator, remove client/host glue Created 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 10
(...skipping 2311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2322 'protocol/session_config.h', 2322 'protocol/session_config.h',
2323 'protocol/session_manager.h', 2323 'protocol/session_manager.h',
2324 'protocol/ssl_hmac_channel_authenticator.cc', 2324 'protocol/ssl_hmac_channel_authenticator.cc',
2325 'protocol/ssl_hmac_channel_authenticator.h', 2325 'protocol/ssl_hmac_channel_authenticator.h',
2326 'protocol/transport.cc', 2326 'protocol/transport.cc',
2327 'protocol/transport.h', 2327 'protocol/transport.h',
2328 'protocol/transport_config.cc', 2328 'protocol/transport_config.cc',
2329 'protocol/transport_config.h', 2329 'protocol/transport_config.h',
2330 'protocol/util.cc', 2330 'protocol/util.cc',
2331 'protocol/util.h', 2331 'protocol/util.h',
2332 'protocol/third_party_authenticator.cc',
2333 'protocol/third_party_authenticator.h',
2332 'protocol/v2_authenticator.cc', 2334 'protocol/v2_authenticator.cc',
2333 'protocol/v2_authenticator.h', 2335 'protocol/v2_authenticator.h',
2334 'protocol/video_reader.cc', 2336 'protocol/video_reader.cc',
2335 'protocol/video_reader.h', 2337 'protocol/video_reader.h',
2336 'protocol/video_stub.h', 2338 'protocol/video_stub.h',
2337 'protocol/video_writer.cc', 2339 'protocol/video_writer.cc',
2338 'protocol/video_writer.h', 2340 'protocol/video_writer.h',
2339 ], 2341 ],
2340 }, # end of target 'remoting_protocol' 2342 }, # end of target 'remoting_protocol'
2341 2343
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
2461 'protocol/jingle_messages_unittest.cc', 2463 'protocol/jingle_messages_unittest.cc',
2462 'protocol/jingle_session_unittest.cc', 2464 'protocol/jingle_session_unittest.cc',
2463 'protocol/message_decoder_unittest.cc', 2465 'protocol/message_decoder_unittest.cc',
2464 'protocol/message_reader_unittest.cc', 2466 'protocol/message_reader_unittest.cc',
2465 'protocol/mouse_input_filter_unittest.cc', 2467 'protocol/mouse_input_filter_unittest.cc',
2466 'protocol/negotiating_authenticator_unittest.cc', 2468 'protocol/negotiating_authenticator_unittest.cc',
2467 'protocol/ppapi_module_stub.cc', 2469 'protocol/ppapi_module_stub.cc',
2468 'protocol/protocol_mock_objects.cc', 2470 'protocol/protocol_mock_objects.cc',
2469 'protocol/protocol_mock_objects.h', 2471 'protocol/protocol_mock_objects.h',
2470 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 2472 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
2473 'protocol/third_party_authenticator_unittest.cc',
2471 'protocol/v2_authenticator_unittest.cc', 2474 'protocol/v2_authenticator_unittest.cc',
2472 ], 2475 ],
2473 'conditions': [ 2476 'conditions': [
2474 [ 'OS=="win"', { 2477 [ 'OS=="win"', {
2475 'include_dirs': [ 2478 'include_dirs': [
2476 '../breakpad/src', 2479 '../breakpad/src',
2477 ], 2480 ],
2478 'link_settings': { 2481 'link_settings': {
2479 'libraries': [ 2482 'libraries': [
2480 '-lrpcrt4.lib', 2483 '-lrpcrt4.lib',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
2540 '../base/allocator/allocator.gyp:allocator', 2543 '../base/allocator/allocator.gyp:allocator',
2541 ], 2544 ],
2542 }, 2545 },
2543 ], 2546 ],
2544 ], 2547 ],
2545 }], # end of 'toolkit_uses_gtk == 1' 2548 }], # end of 'toolkit_uses_gtk == 1'
2546 ], # end of 'conditions' 2549 ], # end of 'conditions'
2547 }, # end of target 'remoting_unittests' 2550 }, # end of target 'remoting_unittests'
2548 ], # end of targets 2551 ], # end of targets
2549 } 2552 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698