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

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

Issue 159841: Linux: preload ffmpeg in the zygote. (Closed)
Patch Set: Created 11 years, 4 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 | « chrome/browser/zygote_main_linux.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) 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': [
11 ['OS!="linux"', {'sources/': [['exclude', '/linux/']]}], 11 ['OS!="linux"', {'sources/': [['exclude', '/linux/']]}],
12 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}], 12 ['OS!="mac"', {'sources/': [['exclude', '/mac/']]}],
13 ['OS!="win"', {'sources/': [['exclude', '/win/']]}], 13 ['OS!="win"', {'sources/': [['exclude', '/win/']]}],
14 ], 14 ],
15 }, 15 },
16 'variables': { 16 'variables': {
17 'use_system_ffmpeg%': 0, 17 'use_system_ffmpeg%': 0,
18 }, 18 },
19 'targets': [ 19 'targets': [
20 { 20 {
21 'variables': { 21 'variables': {
22 'generate_stubs_script': 'generate_stubs.py', 22 'generate_stubs_script': 'generate_stubs.py',
23 'sig_files': [ 23 'sig_files': [
24 # Note that these must be listed in dependency order.
25 # (i.e. if A depends on B, then B must be listed before A.)
26 'avutil-50.sigs',
awong 2009/08/04 01:17:10 what? really? What happens if it's not? I didn'
agl 2009/08/04 01:18:46 It doesn't load otherwise. avcodec depends on avut
24 'avcodec-52.sigs', 27 'avcodec-52.sigs',
25 'avformat-52.sigs', 28 'avformat-52.sigs',
26 'avutil-50.sigs',
27 ], 29 ],
28 'extra_header': 'ffmpeg_stub_headers.fragment', 30 'extra_header': 'ffmpeg_stub_headers.fragment',
29 }, 31 },
30 'target_name': 'ffmpeg', 32 'target_name': 'ffmpeg',
31 'msvs_guid': 'D7A94F58-576A-45D9-A45F-EB87C63ABBB0', 33 'msvs_guid': 'D7A94F58-576A-45D9-A45F-EB87C63ABBB0',
32 'dependencies': [ 34 'dependencies': [
33 'ffmpeg_binaries', 35 'ffmpeg_binaries',
34 ], 36 ],
35 'sources': [ 37 'sources': [
36 'include/libavcodec/avcodec.h', 38 'include/libavcodec/avcodec.h',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 { 228 {
227 'destination': '<(PRODUCT_DIR)/', 229 'destination': '<(PRODUCT_DIR)/',
228 'files': [ 230 'files': [
229 '<@(source_files)', 231 '<@(source_files)',
230 ] 232 ]
231 }, 233 },
232 ], 234 ],
233 }, 235 },
234 ], 236 ],
235 } 237 }
OLDNEW
« no previous file with comments | « chrome/browser/zygote_main_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698