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

Side by Side Diff: remoting/remoting.gyp

Issue 6623048: Replace libjingle's HttpPortAllocatorSession with Pepper's http client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: thread switching Created 9 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 | Annotate | Revision Log
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ], 84 ],
85 'sources': [ 85 'sources': [
86 'client/plugin/chromoting_instance.cc', 86 'client/plugin/chromoting_instance.cc',
87 'client/plugin/chromoting_instance.h', 87 'client/plugin/chromoting_instance.h',
88 'client/plugin/chromoting_scriptable_object.cc', 88 'client/plugin/chromoting_scriptable_object.cc',
89 'client/plugin/chromoting_scriptable_object.h', 89 'client/plugin/chromoting_scriptable_object.h',
90 'client/plugin/pepper_entrypoints.cc', 90 'client/plugin/pepper_entrypoints.cc',
91 'client/plugin/pepper_entrypoints.h', 91 'client/plugin/pepper_entrypoints.h',
92 'client/plugin/pepper_input_handler.cc', 92 'client/plugin/pepper_input_handler.cc',
93 'client/plugin/pepper_input_handler.h', 93 'client/plugin/pepper_input_handler.h',
94 'client/plugin/pepper_port_allocator_session.cc',
95 'client/plugin/pepper_port_allocator_session.h',
94 'client/plugin/pepper_view.cc', 96 'client/plugin/pepper_view.cc',
95 'client/plugin/pepper_view.h', 97 'client/plugin/pepper_view.h',
96 'client/plugin/pepper_view_proxy.cc', 98 'client/plugin/pepper_view_proxy.cc',
97 'client/plugin/pepper_view_proxy.h', 99 'client/plugin/pepper_view_proxy.h',
98 'client/plugin/pepper_util.cc', 100 'client/plugin/pepper_util.cc',
99 'client/plugin/pepper_util.h', 101 'client/plugin/pepper_util.h',
100 '../media/base/yuv_convert.cc', 102 '../media/base/yuv_convert.cc',
101 '../media/base/yuv_convert.h', 103 '../media/base/yuv_convert.h',
102 '../media/base/yuv_row.h', 104 '../media/base/yuv_row.h',
103 '../media/base/yuv_row_table.cc', 105 '../media/base/yuv_row_table.cc',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 339 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
338 '../third_party/libsrtp/libsrtp.gyp:libsrtp', 340 '../third_party/libsrtp/libsrtp.gyp:libsrtp',
339 ], 341 ],
340 'export_dependent_settings': [ 342 'export_dependent_settings': [
341 '../third_party/libjingle/libjingle.gyp:libjingle', 343 '../third_party/libjingle/libjingle.gyp:libjingle',
342 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 344 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
343 ], 345 ],
344 'sources': [ 346 'sources': [
345 'jingle_glue/channel_socket_adapter.cc', 347 'jingle_glue/channel_socket_adapter.cc',
346 'jingle_glue/channel_socket_adapter.h', 348 'jingle_glue/channel_socket_adapter.h',
349 'jingle_glue/http_port_allocator.cc',
350 'jingle_glue/http_port_allocator.h',
347 'jingle_glue/iq_request.cc', 351 'jingle_glue/iq_request.cc',
348 'jingle_glue/iq_request.h', 352 'jingle_glue/iq_request.h',
349 'jingle_glue/jingle_client.cc', 353 'jingle_glue/jingle_client.cc',
350 'jingle_glue/jingle_client.h', 354 'jingle_glue/jingle_client.h',
351 'jingle_glue/jingle_info_task.cc', 355 'jingle_glue/jingle_info_task.cc',
352 'jingle_glue/jingle_info_task.h', 356 'jingle_glue/jingle_info_task.h',
353 'jingle_glue/jingle_thread.cc', 357 'jingle_glue/jingle_thread.cc',
354 'jingle_glue/jingle_thread.h', 358 'jingle_glue/jingle_thread.h',
355 'jingle_glue/stream_socket_adapter.cc', 359 'jingle_glue/stream_socket_adapter.cc',
356 'jingle_glue/stream_socket_adapter.h', 360 'jingle_glue/stream_socket_adapter.h',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 ], # end of 'conditions' 606 ], # end of 'conditions'
603 }, # end of target 'chromoting_unittests' 607 }, # end of target 'chromoting_unittests'
604 ], # end of targets 608 ], # end of targets
605 } 609 }
606 610
607 # Local Variables: 611 # Local Variables:
608 # tab-width:2 612 # tab-width:2
609 # indent-tabs-mode:nil 613 # indent-tabs-mode:nil
610 # End: 614 # End:
611 # vim: set expandtab tabstop=2 shiftwidth=2: 615 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698