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

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

Issue 1716353002: Change //third_party/minigbm to a shared_library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sigh, fix on old buildbots Created 4 years, 10 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 | « third_party/minigbm/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'use_system_minigbm%': 0, 7 'use_system_minigbm%': 0,
8 }, 8 },
9 'conditions': [ 9 'conditions': [
10 ['use_system_minigbm==0', { 10 ['use_system_minigbm==0', {
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'minigbm', 13 'target_name': 'minigbm',
14 'type': 'static_library', 14 'type': 'shared_library',
15 'dependencies' : [ 15 'dependencies' : [
16 '../../build/linux/system.gyp:libdrm', 16 '../../build/linux/system.gyp:libdrm',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'src/cirrus.c', 19 'src/cirrus.c',
20 'src/exynos.c', 20 'src/exynos.c',
21 'src/gbm.c', 21 'src/gbm.c',
22 'src/gma500.c', 22 'src/gma500.c',
23 'src/helpers.c', 23 'src/helpers.c',
24 'src/i915.c', 24 'src/i915.c',
(...skipping 28 matching lines...) Expand all
53 ], 53 ],
54 'libraries': [ 54 'libraries': [
55 '<!@(<(pkg-config) --libs-only-l gbm)', 55 '<!@(<(pkg-config) --libs-only-l gbm)',
56 ], 56 ],
57 }, 57 },
58 }, 58 },
59 ], 59 ],
60 }], 60 }],
61 ], 61 ],
62 } 62 }
OLDNEW
« no previous file with comments | « third_party/minigbm/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698