blob: f56e7aa614109c70ec8cc009e91e4876b3eadc70 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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}