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

Side by Side Diff: media/media.gyp

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed cjhopman's comments. Created 5 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
OLDNEW
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 { 1669 {
1670 # TODO(GN) 1670 # TODO(GN)
1671 'target_name': 'media_unittests_apk', 1671 'target_name': 'media_unittests_apk',
1672 'type': 'none', 1672 'type': 'none',
1673 'dependencies': [ 1673 'dependencies': [
1674 'media_java', 1674 'media_java',
1675 'media_unittests', 1675 'media_unittests',
1676 ], 1676 ],
1677 'variables': { 1677 'variables': {
1678 'test_suite_name': 'media_unittests', 1678 'test_suite_name': 'media_unittests',
1679 'isolate_file': 'media_unittests.isolate',
1679 }, 1680 },
1680 'includes': ['../build/apk_test.gypi'], 1681 'includes': ['../build/apk_test.gypi'],
1681 }, 1682 },
1682 { 1683 {
1683 # TODO(GN) 1684 # TODO(GN)
1684 'target_name': 'media_perftests_apk', 1685 'target_name': 'media_perftests_apk',
1685 'type': 'none', 1686 'type': 'none',
1686 'dependencies': [ 1687 'dependencies': [
1687 'media_java', 1688 'media_java',
1688 'media_perftests', 1689 'media_perftests',
1689 ], 1690 ],
1690 'variables': { 1691 'variables': {
1691 'test_suite_name': 'media_perftests', 1692 'test_suite_name': 'media_perftests',
1693 'isolate_file': 'media_perftests.isolate',
1692 }, 1694 },
1693 'includes': ['../build/apk_test.gypi'], 1695 'includes': ['../build/apk_test.gypi'],
1694 }, 1696 },
1695 { 1697 {
1696 # GN: //media/base/android:media_android_jni_headers 1698 # GN: //media/base/android:media_android_jni_headers
1697 'target_name': 'media_android_jni_headers', 1699 'target_name': 'media_android_jni_headers',
1698 'type': 'none', 1700 'type': 'none',
1699 'sources': [ 1701 'sources': [
1700 'base/android/java/src/org/chromium/media/AudioManagerAndroid.java', 1702 'base/android/java/src/org/chromium/media/AudioManagerAndroid.java',
1701 'base/android/java/src/org/chromium/media/AudioRecordInput.java', 1703 'base/android/java/src/org/chromium/media/AudioRecordInput.java',
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 '../build/isolate.gypi', 1964 '../build/isolate.gypi',
1963 ], 1965 ],
1964 'sources': [ 1966 'sources': [
1965 'audio_unittests.isolate', 1967 'audio_unittests.isolate',
1966 ], 1968 ],
1967 }, 1969 },
1968 ], 1970 ],
1969 }], 1971 }],
1970 ], 1972 ],
1971 } 1973 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698