Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: third_party/libsdl/sdl.gypi

Issue 1411033003: Initial gyp files for SDL (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: feedback inc Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libsdl/linux/sdl_linux.gypi ('k') | third_party/libsdl/sdl_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libsdl/sdl.gypi
diff --git a/third_party/libsdl/sdl.gypi b/third_party/libsdl/sdl.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..31d8834fc41fe3cf3d730208d747813a7a60c1e3
--- /dev/null
+++ b/third_party/libsdl/sdl.gypi
@@ -0,0 +1,40 @@
+# 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': 'shared_library',
+ 'include_dirs': [
+ '<(base_dir)/<(skia_os)',
+ '<(src_dir)/include',
+ ],
+ 'includes': [
+ 'sdl_sources.gypi',
+ ],
+ 'sources': [
+ '<@(sdl_sources)',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(src_dir)/include',
+ ]
+ },
+ 'cflags': [
+ '-g',
+ '-w',
+ ],
+ 'conditions': [
+ ['skia_os == "linux"', {
+ 'includes': [
+ 'linux/sdl_linux.gypi',
+ ]
+ }],
+ ],
+ },
+ ],
+}
« no previous file with comments | « third_party/libsdl/linux/sdl_linux.gypi ('k') | third_party/libsdl/sdl_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698