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

Side by Side Diff: media/media.gyp

Issue 659493003: Final step of the java_cpp_template -> java_cpp_enum migration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delete some more template files Created 6 years, 2 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 1793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1804 'defines': [ 1804 'defines': [
1805 'MEDIA_IMPLEMENTATION', 1805 'MEDIA_IMPLEMENTATION',
1806 ], 1806 ],
1807 }, 1807 },
1808 { 1808 {
1809 # GN: //media/base/android:media_java 1809 # GN: //media/base/android:media_java
1810 'target_name': 'media_java', 1810 'target_name': 'media_java',
1811 'type': 'none', 1811 'type': 'none',
1812 'dependencies': [ 1812 'dependencies': [
1813 '../base/base.gyp:base', 1813 '../base/base.gyp:base',
1814 'media_android_imageformat_list', 1814 'media_android_imageformat',
1815 ], 1815 ],
1816 'export_dependent_settings': [ 1816 'export_dependent_settings': [
1817 '../base/base.gyp:base', 1817 '../base/base.gyp:base',
1818 ], 1818 ],
1819 'variables': { 1819 'variables': {
1820 'java_in_dir': 'base/android/java', 1820 'java_in_dir': 'base/android/java',
1821 }, 1821 },
1822 'includes': ['../build/java.gypi'], 1822 'includes': ['../build/java.gypi'],
1823 }, 1823 },
1824 { 1824 {
1825 # GN: //media/base/android:media_android_imageformat_list 1825 # GN: //media/base/android:media_android_imageformat
1826 'target_name': 'media_android_imageformat_list', 1826 'target_name': 'media_android_imageformat',
1827 'type': 'none', 1827 'type': 'none',
1828 'sources': [
1829 'base/android/java/src/org/chromium/media/AndroidImageFormat.templat e',
1830 ],
1831 'variables': { 1828 'variables': {
1832 'package_name': 'org/chromium/media', 1829 'source_file': 'video/capture/android/video_capture_device_android.h ',
1833 'template_deps': ['video/capture/android/imageformat_list.h'],
1834 }, 1830 },
1835 'includes': [ '../build/android/java_cpp_template.gypi' ], 1831 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1836 }, 1832 },
1837 ], 1833 ],
1838 }], 1834 }],
1839 ['media_use_ffmpeg==1', { 1835 ['media_use_ffmpeg==1', {
1840 'targets': [ 1836 'targets': [
1841 { 1837 {
1842 # GN version: //media:ffmpeg_unittests 1838 # GN version: //media:ffmpeg_unittests
1843 'target_name': 'ffmpeg_unittests', 1839 'target_name': 'ffmpeg_unittests',
1844 'type': 'executable', 1840 'type': 'executable',
1845 'dependencies': [ 1841 'dependencies': [
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1960 '../build/isolate.gypi', 1956 '../build/isolate.gypi',
1961 ], 1957 ],
1962 'sources': [ 1958 'sources': [
1963 'media_unittests.isolate', 1959 'media_unittests.isolate',
1964 ], 1960 ],
1965 }, 1961 },
1966 ], 1962 ],
1967 }], 1963 }],
1968 ], 1964 ],
1969 } 1965 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698