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

Side by Side Diff: remoting/remoting.gyp

Issue 7623020: Build remoting with libvpx in all platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/chromoting_host.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) 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 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 'base/running_average.cc', 331 'base/running_average.cc',
332 'base/running_average.h', 332 'base/running_average.h',
333 'base/task_thread_proxy.cc', 333 'base/task_thread_proxy.cc',
334 'base/task_thread_proxy.h', 334 'base/task_thread_proxy.h',
335 'base/tracer.cc', 335 'base/tracer.cc',
336 'base/tracer.h', 336 'base/tracer.h',
337 'base/types.h', 337 'base/types.h',
338 'base/util.cc', 338 'base/util.cc',
339 'base/util.h', 339 'base/util.h',
340 ], 340 ],
341 'conditions': [
342 ['target_arch=="arm"', {
343 'sources!': [
344 'base/decoder_vp8.cc',
345 'base/decoder_vp8.h',
346 'base/encoder_vp8.cc',
347 'base/encoder_vp8.h',
348 ],
349 }],
350 ],
351 }, # end of target 'remoting_base' 341 }, # end of target 'remoting_base'
352 342
353 { 343 {
354 'target_name': 'remoting_host', 344 'target_name': 'remoting_host',
355 'type': 'static_library', 345 'type': 'static_library',
356 'dependencies': [ 346 'dependencies': [
357 'remoting_base', 347 'remoting_base',
358 'remoting_jingle_glue', 348 'remoting_jingle_glue',
359 'remoting_protocol', 349 'remoting_protocol',
360 'differ_block', 350 'differ_block',
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 ], 803 ],
814 'conditions': [ 804 'conditions': [
815 [ 'linux_use_tcmalloc==1', { 805 [ 'linux_use_tcmalloc==1', {
816 'dependencies': [ 806 'dependencies': [
817 '../base/allocator/allocator.gyp:allocator', 807 '../base/allocator/allocator.gyp:allocator',
818 ], 808 ],
819 }, 809 },
820 ], 810 ],
821 ], 811 ],
822 }], 812 }],
823 ['target_arch=="arm"', {
824 'sources!': [
825 'base/decoder_vp8_unittest.cc',
826 'base/encoder_vp8_unittest.cc',
827 ],
828 }],
829 ], # end of 'conditions' 813 ], # end of 'conditions'
830 }, # end of target 'remoting_unittests' 814 }, # end of target 'remoting_unittests'
831 ], # end of targets 815 ], # end of targets
832 } 816 }
OLDNEW
« no previous file with comments | « remoting/host/chromoting_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698