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

Side by Side Diff: third_party/ffmpeg/ffmpeg.gyp

Issue 203076: Fix the Linux shared build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « printing/printing.gyp ('k') | third_party/libevent/libevent.gyp » ('j') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../../build/common.gypi', 7 '../../build/common.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 ], 141 ],
142 'direct_dependent_settings': { 142 'direct_dependent_settings': {
143 'defines': [ 143 'defines': [
144 '__STDC_CONSTANT_MACROS', # FFmpeg uses INT64_C. 144 '__STDC_CONSTANT_MACROS', # FFmpeg uses INT64_C.
145 ], 145 ],
146 'include_dirs': [ 146 'include_dirs': [
147 '<(output_root)', 147 '<(output_root)',
148 '../..', # The chromium 'src' directory. 148 '../..', # The chromium 'src' directory.
149 ], 149 ],
150 }, 150 },
151 'link_settings': {
152 'libraries': [
153 # We need dl for dlopen() and friends.
154 '-ldl',
TVL 2009/09/16 14:58:41 this is making the mac build grumpy, you needed co
155 ],
156 },
151 'actions': [ 157 'actions': [
152 { 158 {
153 'action_name': 'generate_stubs', 159 'action_name': 'generate_stubs',
154 'inputs': [ 160 'inputs': [
155 '<(generate_stubs_script)', 161 '<(generate_stubs_script)',
156 '<(extra_header)', 162 '<(extra_header)',
157 '<@(sig_files)', 163 '<@(sig_files)',
158 ], 164 ],
159 'outputs': [ 165 'outputs': [
160 '<(intermediate_dir)/<(stubs_filename_root).cc', 166 '<(intermediate_dir)/<(stubs_filename_root).cc',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 { 237 {
232 'destination': '<(PRODUCT_DIR)/', 238 'destination': '<(PRODUCT_DIR)/',
233 'files': [ 239 'files': [
234 '<@(source_files)', 240 '<@(source_files)',
235 ] 241 ]
236 }, 242 },
237 ], 243 ],
238 }, 244 },
239 ], 245 ],
240 } 246 }
OLDNEW
« no previous file with comments | « printing/printing.gyp ('k') | third_party/libevent/libevent.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698