OLD | NEW |
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%': 1, |
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': 'static_library', |
15 'dependencies' : [ | 15 'dependencies' : [ |
16 '../../build/linux/system.gyp:libdrm', | 16 '../../build/linux/system.gyp:libdrm', |
17 ], | 17 ], |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |