| OLD | NEW |
| 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 # If any of the linux_link_FOO below are set to 1, then the corresponding | 7 # If any of the linux_link_FOO below are set to 1, then the corresponding |
| 8 # target will be linked against the FOO library (either dynamically or | 8 # target will be linked against the FOO library (either dynamically or |
| 9 # statically, depending on the pkg-config files), as opposed to loading the | 9 # statically, depending on the pkg-config files), as opposed to loading the |
| 10 # FOO library dynamically with dlopen. | 10 # FOO library dynamically with dlopen. |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 'ldflags': [ | 517 'ldflags': [ |
| 518 '<!@(<(pkg-config) --libs-only-L --libs-only-other gbm)', | 518 '<!@(<(pkg-config) --libs-only-L --libs-only-other gbm)', |
| 519 ], | 519 ], |
| 520 'libraries': [ | 520 'libraries': [ |
| 521 '<!@(<(pkg-config) --libs-only-l gbm)', | 521 '<!@(<(pkg-config) --libs-only-l gbm)', |
| 522 ], | 522 ], |
| 523 }, | 523 }, |
| 524 }, | 524 }, |
| 525 ], | 525 ], |
| 526 }], | 526 }], |
| 527 ['ozone_platform_dri==1 or ozone_platform_drm==1 or ozone_platform_gbm==1',
{ | 527 ['ozone_platform_drm==1 or ozone_platform_gbm==1', { |
| 528 'targets': [ | 528 'targets': [ |
| 529 { | 529 { |
| 530 'target_name': 'libdrm', | 530 'target_name': 'libdrm', |
| 531 'type': 'none', | 531 'type': 'none', |
| 532 'direct_dependent_settings': { | 532 'direct_dependent_settings': { |
| 533 'cflags': [ | 533 'cflags': [ |
| 534 '<!@(<(pkg-config) --cflags libdrm)', | 534 '<!@(<(pkg-config) --cflags libdrm)', |
| 535 ], | 535 ], |
| 536 }, | 536 }, |
| 537 'link_settings': { | 537 'link_settings': { |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 }, | 1213 }, |
| 1214 }], | 1214 }], |
| 1215 ], | 1215 ], |
| 1216 }], | 1216 }], |
| 1217 ] | 1217 ] |
| 1218 }], | 1218 }], |
| 1219 ], | 1219 ], |
| 1220 }, | 1220 }, |
| 1221 ], | 1221 ], |
| 1222 } | 1222 } |
| OLD | NEW |