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

Side by Side Diff: media/media.gyp

Issue 215873003: Fix player_x11 build. Adds missing shared_memory_util dep. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 '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 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 }, 1451 },
1452 ], # targets 1452 ], # targets
1453 }], 1453 }],
1454 ['use_x11==1', { 1454 ['use_x11==1', {
1455 'targets': [ 1455 'targets': [
1456 { 1456 {
1457 'target_name': 'player_x11', 1457 'target_name': 'player_x11',
1458 'type': 'executable', 1458 'type': 'executable',
1459 'dependencies': [ 1459 'dependencies': [
1460 'media', 1460 'media',
1461 'shared_memory_support',
1461 '../base/base.gyp:base', 1462 '../base/base.gyp:base',
1462 '../ui/gl/gl.gyp:gl', 1463 '../ui/gl/gl.gyp:gl',
1463 '../ui/gfx/gfx.gyp:gfx', 1464 '../ui/gfx/gfx.gyp:gfx',
1464 '../ui/gfx/gfx.gyp:gfx_geometry', 1465 '../ui/gfx/gfx.gyp:gfx_geometry',
1465 '../build/linux/system.gyp:x11', 1466 '../build/linux/system.gyp:x11',
1466 '../build/linux/system.gyp:xext', 1467 '../build/linux/system.gyp:xext',
1467 '../build/linux/system.gyp:xrender', 1468 '../build/linux/system.gyp:xrender',
1468 ], 1469 ],
1469 'conditions': [ 1470 'conditions': [
1470 # Linux/Solaris need libdl for dlopen() and friends. 1471 # Linux/Solaris need libdl for dlopen() and friends.
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1691 ], 1692 ],
1692 }], 1693 }],
1693 ], 1694 ],
1694 }], 1695 }],
1695 ], 1696 ],
1696 }, 1697 },
1697 ], 1698 ],
1698 }], 1699 }],
1699 ], 1700 ],
1700 } 1701 }
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