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

Side by Side Diff: webkit/media/webkit_media.gypi

Issue 12082008: Make webkit_media build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 ], 116 ],
117 'dependencies': [ 117 'dependencies': [
118 '<(DEPTH)/media/media.gyp:player_android', 118 '<(DEPTH)/media/media.gyp:player_android',
119 ], 119 ],
120 }, { # OS != "android"' 120 }, { # OS != "android"'
121 'sources/': [ 121 'sources/': [
122 ['exclude', '^android/'], 122 ['exclude', '^android/'],
123 ], 123 ],
124 }], 124 }],
125 ], 125 ],
126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
127 'msvs_disabled_warnings': [ 4267, ],
126 }, 128 },
127 { 129 {
128 'target_name': 'clearkeycdm', 130 'target_name': 'clearkeycdm',
129 'type': 'none', 131 'type': 'none',
130 # TODO(tomfinegan): Simplify this by unconditionally including all the 132 # TODO(tomfinegan): Simplify this by unconditionally including all the
131 # decoders, and changing clearkeycdm to select which decoder to use 133 # decoders, and changing clearkeycdm to select which decoder to use
132 # based on environment variables. 134 # based on environment variables.
133 'conditions': [ 135 'conditions': [
134 ['use_fake_video_decoder == 1' , { 136 ['use_fake_video_decoder == 1' , {
135 'defines': ['CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER'], 137 'defines': ['CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER'],
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 # Not to strip important symbols by -Wl,-dead_strip. 221 # Not to strip important symbols by -Wl,-dead_strip.
220 '-Wl,-exported_symbol,_PPP_GetInterface', 222 '-Wl,-exported_symbol,_PPP_GetInterface',
221 '-Wl,-exported_symbol,_PPP_InitializeModule', 223 '-Wl,-exported_symbol,_PPP_InitializeModule',
222 '-Wl,-exported_symbol,_PPP_ShutdownModule' 224 '-Wl,-exported_symbol,_PPP_ShutdownModule'
223 ]}, 225 ]},
224 }], 226 }],
225 ], 227 ],
226 } 228 }
227 ], 229 ],
228 } 230 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698