1# Copyright 2013 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5{ 6 'targets': [ 7 { 8 'target_name': 'libjpeg', 9 'type': 'none', 10 'direct_dependent_settings': { 11 'defines': [ 12 'USE_SYSTEM_LIBJPEG', 13 ], 14 'conditions': [ 15 ['os_bsd==1', { 16 'include_dirs': [ 17 '/usr/local/include', 18 ], 19 }], 20 ], 21 }, 22 'link_settings': { 23 'libraries': [ 24 '-ljpeg', 25 ], 26 }, 27 } 28 ], 29} 30