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

Side by Side Diff: media/media.gyp

Issue 688423003: [Cast] VideoFrameFactory interface to vend frames with encoder affinity. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after
1927 'sources': [ 1927 'sources': [
1928 'base/mac/coremedia_glue.h', 1928 'base/mac/coremedia_glue.h',
1929 'base/mac/coremedia_glue.mm', 1929 'base/mac/coremedia_glue.mm',
1930 'base/mac/corevideo_glue.h', 1930 'base/mac/corevideo_glue.h',
1931 'base/mac/videotoolbox_glue.h', 1931 'base/mac/videotoolbox_glue.h',
1932 'base/mac/videotoolbox_glue.mm', 1932 'base/mac/videotoolbox_glue.mm',
1933 'base/mac/video_frame_mac.h', 1933 'base/mac/video_frame_mac.h',
1934 'base/mac/video_frame_mac.cc', 1934 'base/mac/video_frame_mac.cc',
1935 'base/video_frame.cc', 1935 'base/video_frame.cc',
1936 'base/video_frame.h', 1936 'base/video_frame.h',
1937 'base/video_frame_pool.cc',
1938 'base/video_frame_pool.h',
1937 ], 1939 ],
1938 'link_settings': { 1940 'link_settings': {
1939 'libraries': [ 1941 'libraries': [
1940 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 1942 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
1941 ], 1943 ],
1942 }, 1944 },
1943 'conditions': [ 1945 'conditions': [
1944 ['arm_neon==1', { 1946 ['arm_neon==1', {
1945 'defines': [ 1947 'defines': [
1946 'USE_NEON' 1948 'USE_NEON'
(...skipping 30 matching lines...) Expand all
1977 '../build/isolate.gypi', 1979 '../build/isolate.gypi',
1978 ], 1980 ],
1979 'sources': [ 1981 'sources': [
1980 'media_unittests.isolate', 1982 'media_unittests.isolate',
1981 ], 1983 ],
1982 }, 1984 },
1983 ], 1985 ],
1984 }], 1986 }],
1985 ], 1987 ],
1986 } 1988 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698