OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
817 ['enable_webrtc==1', { | 817 ['enable_webrtc==1', { |
818 'sources': [ | 818 'sources': [ |
819 'browser/media/webrtc_browsertest.cc', | 819 'browser/media/webrtc_browsertest.cc', |
820 ], | 820 ], |
821 }], | 821 }], |
822 ], | 822 ], |
823 }, | 823 }, |
824 ], | 824 ], |
825 }], | 825 }], |
826 ['chromeos==1 or OS=="win" or OS=="mac"', { | 826 ['chromeos==1 or OS=="win" or OS=="mac"', { |
827 # TODO(dwkang): make video_decode_accelerator_unittest work on Android. | |
Ami GONE FROM CHROMIUM
2013/01/23 01:32:32
FWIW you should probably get this done before land
dwkang1
2013/01/28 14:54:30
Sure, actually, Fellipe(from Clank team) suggested
| |
827 'targets': [ | 828 'targets': [ |
828 { | 829 { |
829 'target_name': 'video_decode_accelerator_unittest', | 830 'target_name': 'video_decode_accelerator_unittest', |
830 'type': 'executable', | 831 'type': 'executable', |
831 'dependencies': [ | 832 'dependencies': [ |
832 'content', | 833 'content', |
833 '../base/base.gyp:base', | 834 '../base/base.gyp:base', |
834 '../testing/gtest.gyp:gtest', | 835 '../testing/gtest.gyp:gtest', |
835 '../media/media.gyp:media', | 836 '../media/media.gyp:media', |
836 '../ui/ui.gyp:ui', | 837 '../ui/ui.gyp:ui', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
958 'resource_dir': '../res', | 959 'resource_dir': '../res', |
959 'additional_src_dirs': ['../content/public/android/javatests/'], | 960 'additional_src_dirs': ['../content/public/android/javatests/'], |
960 'is_test_apk': 1, | 961 'is_test_apk': 1, |
961 }, | 962 }, |
962 'includes': [ '../build/java_apk.gypi' ], | 963 'includes': [ '../build/java_apk.gypi' ], |
963 }, | 964 }, |
964 ], | 965 ], |
965 }], | 966 }], |
966 ], | 967 ], |
967 } | 968 } |
OLD | NEW |