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

Side by Side Diff: remoting/remoting.gyp

Issue 2843026: Fork a copy of all the notifier code in chrome/common/net/notifier that we depend on. (Closed) Base URL: git://codf21.jail.google.com/chromium.git
Patch Set: Merge in sergey's patch (2834024) and fix checkdeps 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
« no previous file with comments | « remoting/jingle_glue/xmpp_socket_adapter.cc ('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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 ], 245 ],
246 'sources': [ 246 'sources': [
247 'client/simple_client.cc', 247 'client/simple_client.cc',
248 ], 248 ],
249 }, # end of target 'chromoting_simple_client' 249 }, # end of target 'chromoting_simple_client'
250 250
251 { 251 {
252 'target_name': 'chromoting_jingle_glue', 252 'target_name': 'chromoting_jingle_glue',
253 'type': '<(library)', 253 'type': '<(library)',
254 'dependencies': [ 254 'dependencies': [
255 # TODO(sergeyu): move all code that is shared between notifier and 255 '../net/net.gyp:net',
256 # jingle_glue to a separate library and use it here.
257 '../chrome/chrome.gyp:notifier',
258 '../third_party/libjingle/libjingle.gyp:libjingle', 256 '../third_party/libjingle/libjingle.gyp:libjingle',
259 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 257 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
260 ], 258 ],
261 'export_dependent_settings': [ 259 'export_dependent_settings': [
262 '../third_party/libjingle/libjingle.gyp:libjingle', 260 '../third_party/libjingle/libjingle.gyp:libjingle',
263 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 261 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
264 ], 262 ],
265 'sources': [ 263 'sources': [
264 'jingle_glue/gaia_token_pre_xmpp_auth.cc',
265 'jingle_glue/gaia_token_pre_xmpp_auth.h',
266 'jingle_glue/iq_request.cc',
266 'jingle_glue/iq_request.h', 267 'jingle_glue/iq_request.h',
267 'jingle_glue/iq_request.cc', 268 'jingle_glue/jingle_channel.cc',
268 'jingle_glue/jingle_channel.h', 269 'jingle_glue/jingle_channel.h',
269 'jingle_glue/jingle_channel.cc', 270 'jingle_glue/jingle_client.cc',
270 'jingle_glue/jingle_client.h', 271 'jingle_glue/jingle_client.h',
271 'jingle_glue/jingle_client.cc', 272 'jingle_glue/jingle_info_task.cc',
272 'jingle_glue/jingle_info_task.h', 273 'jingle_glue/jingle_info_task.h',
273 'jingle_glue/jingle_info_task.cc', 274 'jingle_glue/jingle_thread.cc',
274 'jingle_glue/jingle_thread.h', 275 'jingle_glue/jingle_thread.h',
275 'jingle_glue/jingle_thread.cc', 276 'jingle_glue/relay_port_allocator.cc',
276 'jingle_glue/relay_port_allocator.h', 277 'jingle_glue/relay_port_allocator.h',
277 'jingle_glue/relay_port_allocator.cc', 278 'jingle_glue/ssl_adapter.cc',
279 'jingle_glue/ssl_adapter.h',
280 'jingle_glue/ssl_socket_adapter.cc',
281 'jingle_glue/ssl_socket_adapter.h',
282 'jingle_glue/xmpp_socket_adapter.cc',
283 'jingle_glue/xmpp_socket_adapter.h',
278 ], 284 ],
279 }, # end of target 'chromoting_jingle_glue' 285 }, # end of target 'chromoting_jingle_glue'
280 286
281 { 287 {
282 'target_name': 'chromoting_jingle_test_client', 288 'target_name': 'chromoting_jingle_test_client',
283 'type': 'executable', 289 'type': 'executable',
284 'dependencies': [ 290 'dependencies': [
285 'chromoting_base', 291 'chromoting_base',
286 'chromoting_jingle_glue', 292 'chromoting_jingle_glue',
287 '../media/media.gyp:media', 293 '../media/media.gyp:media',
(...skipping 10 matching lines...) Expand all
298 'dependencies': [ 304 'dependencies': [
299 'chromoting_base', 305 'chromoting_base',
300 'chromoting_client', 306 'chromoting_client',
301 'chromoting_host', 307 'chromoting_host',
302 'chromoting_jingle_glue', 308 'chromoting_jingle_glue',
303 '../base/base.gyp:base', 309 '../base/base.gyp:base',
304 '../base/base.gyp:base_i18n', 310 '../base/base.gyp:base_i18n',
305 '../gfx/gfx.gyp:*', 311 '../gfx/gfx.gyp:*',
306 '../testing/gmock.gyp:gmock', 312 '../testing/gmock.gyp:gmock',
307 '../testing/gtest.gyp:gtest', 313 '../testing/gtest.gyp:gtest',
308 # TODO(hclam): Remove all these extra dependencies notifier is moved
309 # outside of chrome.gyp.
310 '../chrome/chrome.gyp:browser',
311 '../chrome/chrome.gyp:chrome_version_info',
312 '../chrome/chrome.gyp:debugger',
313 '../chrome/chrome.gyp:plugin',
314 '../chrome/chrome.gyp:renderer',
315 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', 314 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit',
316 '../webkit/support/webkit_support.gyp:appcache', 315 '../webkit/support/webkit_support.gyp:appcache',
317 '../webkit/support/webkit_support.gyp:database', 316 '../webkit/support/webkit_support.gyp:database',
318 '../webkit/support/webkit_support.gyp:glue', 317 '../webkit/support/webkit_support.gyp:glue',
319 '../webkit/support/webkit_support.gyp:webkit_support', 318 '../webkit/support/webkit_support.gyp:webkit_support',
320 ], 319 ],
321 'include_dirs': [ 320 'include_dirs': [
322 '../testing/gmock/include', 321 '../testing/gmock/include',
323 ], 322 ],
324 'sources': [ 323 'sources': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 ], # end of 'conditions' 366 ], # end of 'conditions'
368 }, # end of target 'chromoting_unittests' 367 }, # end of target 'chromoting_unittests'
369 ], # end of targets 368 ], # end of targets
370 } 369 }
371 370
372 # Local Variables: 371 # Local Variables:
373 # tab-width:2 372 # tab-width:2
374 # indent-tabs-mode:nil 373 # indent-tabs-mode:nil
375 # End: 374 # End:
376 # vim: set expandtab tabstop=2 shiftwidth=2: 375 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/jingle_glue/xmpp_socket_adapter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698