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

Side by Side Diff: remoting/remoting.gyp

Issue 3087003: Added HostKeyPair class, signatures for heartbeat messages. (Closed)
Patch Set: - Created 10 years, 4 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/jingle_glue/jingle_thread.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 '../media/base/yuv_row_win.cc', 99 '../media/base/yuv_row_win.cc',
100 ], 100 ],
101 }], 101 }],
102 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="mac"', { 102 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="mac"', {
103 'sources': [ 103 'sources': [
104 '../media/base/yuv_row_posix.cc', 104 '../media/base/yuv_row_posix.cc',
105 ], 105 ],
106 }], 106 }],
107 ], # end of 'conditions' 107 ], # end of 'conditions'
108 }, # end of target 'chromoting_plugin' 108 }, # end of target 'chromoting_plugin'
109 109
110 { 110 {
111 'target_name': 'chromoting_base', 111 'target_name': 'chromoting_base',
112 'type': '<(library)', 112 'type': '<(library)',
113 'dependencies': [ 113 'dependencies': [
114 '../gfx/gfx.gyp:gfx', 114 '../gfx/gfx.gyp:gfx',
115 '../media/media.gyp:media', 115 '../media/media.gyp:media',
116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite',
117 '../third_party/zlib/zlib.gyp:zlib', 117 '../third_party/zlib/zlib.gyp:zlib',
118 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', 118 'base/protocol/chromotocol.gyp:chromotocol_proto_lib',
119 'chromoting_jingle_glue', 119 'chromoting_jingle_glue',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'host/differ.cc', 181 'host/differ.cc',
182 'host/differ_block.h', 182 'host/differ_block.h',
183 'host/differ_block.cc', 183 'host/differ_block.cc',
184 'host/event_executor.h', 184 'host/event_executor.h',
185 'host/session_manager.cc', 185 'host/session_manager.cc',
186 'host/session_manager.h', 186 'host/session_manager.h',
187 'host/heartbeat_sender.cc', 187 'host/heartbeat_sender.cc',
188 'host/heartbeat_sender.h', 188 'host/heartbeat_sender.h',
189 'host/host_config.cc', 189 'host/host_config.cc',
190 'host/host_config.h', 190 'host/host_config.h',
191 'host/host_key_pair.cc',
192 'host/host_key_pair.h',
191 'host/json_host_config.cc', 193 'host/json_host_config.cc',
192 'host/json_host_config.h', 194 'host/json_host_config.h',
193 ], 195 ],
194 'conditions': [ 196 'conditions': [
195 ['OS=="win"', { 197 ['OS=="win"', {
196 'sources': [ 198 'sources': [
197 'host/capturer_gdi.cc', 199 'host/capturer_gdi.cc',
198 'host/capturer_gdi.h', 200 'host/capturer_gdi.h',
199 'host/event_executor_win.cc', 201 'host/event_executor_win.cc',
200 'host/event_executor_win.h', 202 'host/event_executor_win.h',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 #'base/encoder_vp8_unittest.cc', 360 #'base/encoder_vp8_unittest.cc',
359 'base/encoder_zlib_unittest.cc', 361 'base/encoder_zlib_unittest.cc',
360 'base/mock_objects.h', 362 'base/mock_objects.h',
361 'base/multiple_array_input_stream_unittest.cc', 363 'base/multiple_array_input_stream_unittest.cc',
362 'base/protocol_decoder_unittest.cc', 364 'base/protocol_decoder_unittest.cc',
363 'client/mock_objects.h', 365 'client/mock_objects.h',
364 'host/chromoting_host_context_unittest.cc', 366 'host/chromoting_host_context_unittest.cc',
365 'host/client_connection_unittest.cc', 367 'host/client_connection_unittest.cc',
366 'host/differ_unittest.cc', 368 'host/differ_unittest.cc',
367 'host/differ_block_unittest.cc', 369 'host/differ_block_unittest.cc',
370 'host/heartbeat_sender_unittest.cc',
371 'host/host_key_pair_unittest.cc',
368 'host/json_host_config_unittest.cc', 372 'host/json_host_config_unittest.cc',
369 'host/mock_objects.h', 373 'host/mock_objects.h',
370 'host/session_manager_unittest.cc', 374 'host/session_manager_unittest.cc',
375 'host/test_key_pair.h',
371 'jingle_glue/jingle_thread_unittest.cc', 376 'jingle_glue/jingle_thread_unittest.cc',
372 'jingle_glue/jingle_channel_unittest.cc', 377 'jingle_glue/jingle_channel_unittest.cc',
373 'jingle_glue/iq_request_unittest.cc', 378 'jingle_glue/iq_request_unittest.cc',
374 'jingle_glue/mock_objects.h', 379 'jingle_glue/mock_objects.h',
375 'run_all_unittests.cc', 380 'run_all_unittests.cc',
376 ], 381 ],
377 'conditions': [ 382 'conditions': [
378 ['OS=="win"', { 383 ['OS=="win"', {
379 'sources': [ 384 'sources': [
380 'host/capturer_gdi_unittest.cc', 385 'host/capturer_gdi_unittest.cc',
(...skipping 19 matching lines...) Expand all
400 ], # end of 'conditions' 405 ], # end of 'conditions'
401 }, # end of target 'chromoting_unittests' 406 }, # end of target 'chromoting_unittests'
402 ], # end of targets 407 ], # end of targets
403 } 408 }
404 409
405 # Local Variables: 410 # Local Variables:
406 # tab-width:2 411 # tab-width:2
407 # indent-tabs-mode:nil 412 # indent-tabs-mode:nil
408 # End: 413 # End:
409 # vim: set expandtab tabstop=2 shiftwidth=2: 414 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/jingle_glue/jingle_thread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698