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

Side by Side Diff: media/media.gyp

Issue 1030253002: Fix missing symbols for pre-linking of the Cast sender library for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update media/base/BUILD.gn. Created 5 years, 8 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
« no previous file with comments | « media/base/yuv_convert.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) 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 1887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1898 # Minimal media component for media/cast on iOS. 1898 # Minimal media component for media/cast on iOS.
1899 # GN version: //media:media_for_cast_ios 1899 # GN version: //media:media_for_cast_ios
1900 'target_name': 'media_for_cast_ios', 1900 'target_name': 'media_for_cast_ios',
1901 'type': '<(component)', 1901 'type': '<(component)',
1902 'dependencies': [ 1902 'dependencies': [
1903 '../base/base.gyp:base', 1903 '../base/base.gyp:base',
1904 '../ui/gfx/gfx.gyp:gfx_geometry', 1904 '../ui/gfx/gfx.gyp:gfx_geometry',
1905 'shared_memory_support', 1905 'shared_memory_support',
1906 ], 1906 ],
1907 'defines': [ 1907 'defines': [
1908 'MEDIA_DISABLE_FFMPEG',
1909 'MEDIA_DISABLE_LIBVPX',
1910 'MEDIA_FOR_CAST_IOS',
1908 'MEDIA_IMPLEMENTATION', 1911 'MEDIA_IMPLEMENTATION',
1909 'MEDIA_FOR_CAST_IOS',
1910 ], 1912 ],
1911 'direct_dependent_settings': { 1913 'direct_dependent_settings': {
1914 'defines': [
1915 'MEDIA_DISABLE_FFMPEG',
1916 'MEDIA_DISABLE_LIBVPX',
1917 ],
1912 'include_dirs': [ 1918 'include_dirs': [
1913 '..', 1919 '..',
1914 ], 1920 ],
1915 }, 1921 },
1916 'include_dirs': [ 1922 'include_dirs': [
1917 '..', 1923 '..',
1918 ], 1924 ],
1919 'sources': [ 1925 'sources': [
1920 'base/mac/coremedia_glue.h', 1926 'base/mac/coremedia_glue.h',
1921 'base/mac/coremedia_glue.mm', 1927 'base/mac/coremedia_glue.mm',
1922 'base/mac/corevideo_glue.h', 1928 'base/mac/corevideo_glue.h',
1923 'base/mac/video_frame_mac.cc', 1929 'base/mac/video_frame_mac.cc',
1924 'base/mac/video_frame_mac.h', 1930 'base/mac/video_frame_mac.h',
1925 'base/mac/videotoolbox_glue.h', 1931 'base/mac/videotoolbox_glue.h',
1926 'base/mac/videotoolbox_glue.mm', 1932 'base/mac/videotoolbox_glue.mm',
1933 'base/simd/convert_rgb_to_yuv.h',
1934 'base/simd/convert_rgb_to_yuv_c.cc',
1935 'base/simd/convert_yuv_to_rgb.h',
1936 'base/simd/convert_yuv_to_rgb_c.cc',
1937 'base/simd/filter_yuv.h',
1938 'base/simd/filter_yuv_c.cc',
1927 'base/video_frame.cc', 1939 'base/video_frame.cc',
1928 'base/video_frame.h', 1940 'base/video_frame.h',
1929 'base/video_frame_metadata.cc', 1941 'base/video_frame_metadata.cc',
1930 'base/video_frame_metadata.h', 1942 'base/video_frame_metadata.h',
1943 'base/video_util.cc',
1944 'base/video_util.h',
1945 'base/yuv_convert.cc',
1946 'base/yuv_convert.h',
1931 ], 1947 ],
1932 'link_settings': { 1948 'link_settings': {
1933 'libraries': [ 1949 'libraries': [
1934 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 1950 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
1935 ], 1951 ],
1936 }, 1952 },
1937 'conditions': [ 1953 'conditions': [
1938 ['arm_neon==1', { 1954 ['arm_neon==1', {
1939 'defines': [ 1955 'defines': [
1940 'USE_NEON' 1956 'USE_NEON'
(...skipping 30 matching lines...) Expand all
1971 '../build/isolate.gypi', 1987 '../build/isolate.gypi',
1972 ], 1988 ],
1973 'sources': [ 1989 'sources': [
1974 'media_unittests.isolate', 1990 'media_unittests.isolate',
1975 ], 1991 ],
1976 }, 1992 },
1977 ], 1993 ],
1978 }], 1994 }],
1979 ], 1995 ],
1980 } 1996 }
OLDNEW
« no previous file with comments | « media/base/yuv_convert.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698