OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |