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

Side by Side Diff: media/media.gyp

Issue 533423002: Include Mac media glue code in iOS builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base-glue
Patch Set: Created 6 years, 3 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/BUILD.gn ('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 970 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 'sources': [ 981 'sources': [
982 'base/simd/convert_yuv_to_rgb_x86.cc', 982 'base/simd/convert_yuv_to_rgb_x86.cc',
983 ], 983 ],
984 }], 984 }],
985 ['OS!="linux" and OS!="win"', { 985 ['OS!="linux" and OS!="win"', {
986 'sources!': [ 986 'sources!': [
987 'base/keyboard_event_counter.cc', 987 'base/keyboard_event_counter.cc',
988 'base/keyboard_event_counter.h', 988 'base/keyboard_event_counter.h',
989 ], 989 ],
990 }], 990 }],
991 ], 991 ], # conditions
992 'target_conditions': [
993 ['OS == "ios" and _toolset != "host"', {
994 'sources/': [
995 # Pull in specific Mac files for iOS (which have been filtered out
996 # by file name rules).
997 ['include', '^base/mac/avfoundation_glue\\.(h|mm)$'],
DaleCurtis 2014/09/04 23:05:03 Please list these explicitly. These type of patter
jfroy 2014/09/05 16:06:36 Done.
998 ['include', '^base/mac/coremedia_glue\\.(h|mm)$'],
999 ],
1000 }],
1001 ], # target_conditions
992 }, 1002 },
993 { 1003 {
994 # GN version: //media:media_unittests 1004 # GN version: //media:media_unittests
995 'target_name': 'media_unittests', 1005 'target_name': 'media_unittests',
996 'type': '<(gtest_target_type)', 1006 'type': '<(gtest_target_type)',
997 'dependencies': [ 1007 'dependencies': [
998 'media', 1008 'media',
999 'media_test_support', 1009 'media_test_support',
1000 'shared_memory_support', 1010 'shared_memory_support',
1001 '../base/base.gyp:base', 1011 '../base/base.gyp:base',
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 ], 1736 ],
1727 }], 1737 }],
1728 ], 1738 ],
1729 }], 1739 }],
1730 ], 1740 ],
1731 }, 1741 },
1732 ], 1742 ],
1733 }], 1743 }],
1734 ], 1744 ],
1735 } 1745 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698