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

Unified Diff: gyp/lua.gyp

Issue 14907017: add SkLuaCanvas (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 7 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 | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/lua.gyp
diff --git a/gyp/lua.gyp b/gyp/lua.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..a8f1ba62f95f1163e4929614f3ee633ee4f05876
--- /dev/null
+++ b/gyp/lua.gyp
@@ -0,0 +1,68 @@
+#
+# Copyright 2013 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': 'lua',
+ 'type': 'static_library',
+ 'suppress_wildcard': '1',
+ 'sources': [
+ # core
+ '../third_party/lua/src/lapi.c',
+ '../third_party/lua/src/lcode.c',
+ '../third_party/lua/src/lctype.c',
+ '../third_party/lua/src/ldebug.c',
+ '../third_party/lua/src/ldo.c',
+ '../third_party/lua/src/ldump.c',
+ '../third_party/lua/src/lfunc.c',
+ '../third_party/lua/src/lgc.c',
+ '../third_party/lua/src/llex.c',
+ '../third_party/lua/src/lmem.c',
+ '../third_party/lua/src/lobject.c',
+ '../third_party/lua/src/lopcodes.c',
+ '../third_party/lua/src/lparser.c',
+ '../third_party/lua/src/lstate.c',
+ '../third_party/lua/src/lstring.c',
+ '../third_party/lua/src/ltable.c',
+ '../third_party/lua/src/ltm.c',
+ '../third_party/lua/src/lundump.c',
+ '../third_party/lua/src/lvm.c',
+ '../third_party/lua/src/lzio.c',
+
+ # libraries
+ '../third_party/lua/src/lauxlib.c',
+ '../third_party/lua/src/lbaselib.c',
+ '../third_party/lua/src/lbitlib.c',
+ '../third_party/lua/src/lcorolib.c',
+ '../third_party/lua/src/ldblib.c',
+ '../third_party/lua/src/liolib.c',
+ '../third_party/lua/src/lmathlib.c',
+ '../third_party/lua/src/loslib.c',
+ '../third_party/lua/src/lstrlib.c',
+ '../third_party/lua/src/ltablib.c',
+ '../third_party/lua/src/loadlib.c',
+ '../third_party/lua/src/linit.c',
+ ],
+ 'include_dirs': [
+ '../third_party/lua/src/',
+ ],
+ 'all_dependent_settings': {
+ 'include_dirs': [
+ '../third_party/lua/src/',
+ ],
+ },
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2:
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698