blob: 75c59af2fd27a2ef2164b6d43b49c435e17459bc [file] [log] [blame]
joshualittcc92b4a2015-10-29 07:09:53 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6{
7 'targets': [
8 {
9 'target_name': 'sdl',
10 'product_name': 'sdl',
joshualitt65d6fbb2015-11-04 13:41:02 -080011 'type': 'static_library',
joshualittcc92b4a2015-10-29 07:09:53 -070012 'include_dirs': [
13 '<(base_dir)/<(skia_os)',
14 '<(src_dir)/include',
15 ],
joshualittcc92b4a2015-10-29 07:09:53 -070016 'direct_dependent_settings': {
17 'include_dirs': [
18 '<(src_dir)/include',
19 ]
20 },
21 'cflags': [
22 '-g',
23 '-w',
24 ],
25 'conditions': [
26 ['skia_os == "linux"', {
27 'includes': [
28 'linux/sdl_linux.gypi',
29 ]
30 }],
31 ],
32 },
33 ],
34}