| 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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 ], | 773 ], |
| 774 }], | 774 }], |
| 775 ], | 775 ], |
| 776 }], | 776 }], |
| 777 ], | 777 ], |
| 778 }, | 778 }, |
| 779 { | 779 { |
| 780 'target_name': 'freetype2', | 780 'target_name': 'freetype2', |
| 781 'type': 'none', | 781 'type': 'none', |
| 782 'conditions': [ | 782 'conditions': [ |
| 783 ['_toolset=="target"', { | 783 ['chromecast==1', { |
| 784 'dependencies': [ |
| 785 '../../third_party/freetype-android/freetype.gyp:ft2', |
| 786 ], |
| 787 'export_dependent_settings' : [ |
| 788 '../../third_party/freetype-android/freetype.gyp:ft2', |
| 789 ], |
| 790 }, '_toolset=="target"', { |
| 784 'direct_dependent_settings': { | 791 'direct_dependent_settings': { |
| 785 'cflags': [ | 792 'cflags': [ |
| 786 '<!@(<(pkg-config) --cflags freetype2)', | 793 '<!@(<(pkg-config) --cflags freetype2)', |
| 787 ], | 794 ], |
| 788 }, | 795 }, |
| 789 'link_settings': { | 796 'link_settings': { |
| 790 'ldflags': [ | 797 'ldflags': [ |
| 791 '<!@(<(pkg-config) --libs-only-L --libs-only-other freetype2)', | 798 '<!@(<(pkg-config) --libs-only-L --libs-only-other freetype2)', |
| 792 ], | 799 ], |
| 793 'libraries': [ | 800 'libraries': [ |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1284 ], | 1291 ], |
| 1285 'libraries': [ | 1292 'libraries': [ |
| 1286 '<!@(<(pkg-config) --libs-only-l libffi)', | 1293 '<!@(<(pkg-config) --libs-only-l libffi)', |
| 1287 ], | 1294 ], |
| 1288 }, | 1295 }, |
| 1289 }], | 1296 }], |
| 1290 ], | 1297 ], |
| 1291 }, | 1298 }, |
| 1292 ], | 1299 ], |
| 1293 } | 1300 } |
| OLD | NEW |