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

Side by Side Diff: remoting/remoting.gyp

Issue 7008003: Wire in OAuth2 support into non-sandboxed connections in libjingle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'conditions': [ 10 'conditions': [
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 ], 227 ],
228 'export_dependent_settings': [ 228 'export_dependent_settings': [
229 '../base/base.gyp:base', 229 '../base/base.gyp:base',
230 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 230 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
231 'proto/chromotocol.gyp:chromotocol_proto_lib', 231 'proto/chromotocol.gyp:chromotocol_proto_lib',
232 ], 232 ],
233 # This target needs a hard dependency because dependent targets 233 # This target needs a hard dependency because dependent targets
234 # depend on chromotocol_proto_lib for headers. 234 # depend on chromotocol_proto_lib for headers.
235 'hard_dependency': 1, 235 'hard_dependency': 1,
236 'sources': [ 236 'sources': [
237 'base/auth_token_util.cc',
238 'base/auth_token_util.h',
239 'base/capture_data.h',
Wez 2011/05/25 03:57:46 Duplicate capture_data.h.
awong 2011/05/25 16:56:56 Done.
237 'base/capture_data.cc', 240 'base/capture_data.cc',
238 'base/capture_data.h', 241 'base/capture_data.h',
239 'base/compound_buffer.cc', 242 'base/compound_buffer.cc',
240 'base/compound_buffer.h', 243 'base/compound_buffer.h',
241 'base/compressor.h', 244 'base/compressor.h',
242 'base/compressor_verbatim.cc', 245 'base/compressor_verbatim.cc',
243 'base/compressor_verbatim.h', 246 'base/compressor_verbatim.h',
244 'base/compressor_zlib.cc', 247 'base/compressor_zlib.cc',
245 'base/compressor_zlib.h', 248 'base/compressor_zlib.h',
246 'base/constants.cc', 249 'base/constants.cc',
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 '../base/base.gyp:base_i18n', 617 '../base/base.gyp:base_i18n',
615 '../base/base.gyp:test_support_base', 618 '../base/base.gyp:test_support_base',
616 '../ui/ui.gyp:ui_gfx', 619 '../ui/ui.gyp:ui_gfx',
617 '../testing/gmock.gyp:gmock', 620 '../testing/gmock.gyp:gmock',
618 '../testing/gtest.gyp:gtest', 621 '../testing/gtest.gyp:gtest',
619 ], 622 ],
620 'include_dirs': [ 623 'include_dirs': [
621 '../testing/gmock/include', 624 '../testing/gmock/include',
622 ], 625 ],
623 'sources': [ 626 'sources': [
627 'base/auth_token_util_unittest.cc',
624 'base/codec_test.cc', 628 'base/codec_test.cc',
625 'base/codec_test.h', 629 'base/codec_test.h',
626 'base/compound_buffer_unittest.cc', 630 'base/compound_buffer_unittest.cc',
627 'base/compressor_zlib_unittest.cc', 631 'base/compressor_zlib_unittest.cc',
628 'base/decoder_vp8_unittest.cc', 632 'base/decoder_vp8_unittest.cc',
629 'base/decompressor_zlib_unittest.cc', 633 'base/decompressor_zlib_unittest.cc',
630 'base/encode_decode_unittest.cc', 634 'base/encode_decode_unittest.cc',
631 'base/encoder_vp8_unittest.cc', 635 'base/encoder_vp8_unittest.cc',
632 'base/encoder_row_based_unittest.cc', 636 'base/encoder_row_based_unittest.cc',
633 'base/base_mock_objects.cc', 637 'base/base_mock_objects.cc',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 ], # end of 'conditions' 701 ], # end of 'conditions'
698 }, # end of target 'remoting_unittests' 702 }, # end of target 'remoting_unittests'
699 ], # end of targets 703 ], # end of targets
700 } 704 }
701 705
702 # Local Variables: 706 # Local Variables:
703 # tab-width:2 707 # tab-width:2
704 # indent-tabs-mode:nil 708 # indent-tabs-mode:nil
705 # End: 709 # End:
706 # vim: set expandtab tabstop=2 shiftwidth=2: 710 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698