65d6fbb576
BUG=skia: Review URL: https://codereview.chromium.org/1413593007
35 lines
674 B
Python
35 lines
674 B
Python
# Copyright 2015 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'sdl',
|
|
'product_name': 'sdl',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'<(base_dir)/<(skia_os)',
|
|
'<(src_dir)/include',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'<(src_dir)/include',
|
|
]
|
|
},
|
|
'cflags': [
|
|
'-g',
|
|
'-w',
|
|
],
|
|
'conditions': [
|
|
['skia_os == "linux"', {
|
|
'includes': [
|
|
'linux/sdl_linux.gypi',
|
|
]
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|