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

Side by Side Diff: remoting/remoting.gyp

Issue 2958001: Added RSA key generator for register_host.py (Closed)
Patch Set: - Created 10 years, 5 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) 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'sources': [ 246 'sources': [
247 'host/capturer_fake.cc', 247 'host/capturer_fake.cc',
248 'host/capturer_fake.h', 248 'host/capturer_fake.h',
249 'host/capturer_fake_ascii.cc', 249 'host/capturer_fake_ascii.cc',
250 'host/capturer_fake_ascii.h', 250 'host/capturer_fake_ascii.h',
251 'host/simple_host_process.cc', 251 'host/simple_host_process.cc',
252 ], 252 ],
253 }, # end of target 'chromoting_simple_host' 253 }, # end of target 'chromoting_simple_host'
254 254
255 { 255 {
256 'target_name': 'chromoting_host_keygen',
257 'type': 'executable',
258 'dependencies': [
259 'chromoting_base',
260 '../base/base.gyp:base',
261 '../base/base.gyp:base_i18n',
262 ],
263 'sources': [
264 'host/keygen_main.cc',
265 ],
266 }, # end of target 'chromoting_simple_host'
267
268 {
256 'target_name': 'chromoting_simple_client', 269 'target_name': 'chromoting_simple_client',
257 'type': 'executable', 270 'type': 'executable',
258 'dependencies': [ 271 'dependencies': [
259 'chromoting_base', 272 'chromoting_base',
260 'chromoting_client', 273 'chromoting_client',
261 'chromoting_jingle_glue', 274 'chromoting_jingle_glue',
262 ], 275 ],
263 'sources': [ 276 'sources': [
264 'client/simple_client.cc', 277 'client/simple_client.cc',
265 ], 278 ],
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 ], # end of 'conditions' 394 ], # end of 'conditions'
382 }, # end of target 'chromoting_unittests' 395 }, # end of target 'chromoting_unittests'
383 ], # end of targets 396 ], # end of targets
384 } 397 }
385 398
386 # Local Variables: 399 # Local Variables:
387 # tab-width:2 400 # tab-width:2
388 # indent-tabs-mode:nil 401 # indent-tabs-mode:nil
389 # End: 402 # End:
390 # vim: set expandtab tabstop=2 shiftwidth=2: 403 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698