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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # Copyright 2013 Google Inc.
3 #
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6 #
7
8
9 {
10 'targets': [
11 {
12 'target_name': 'lua',
13 'type': 'static_library',
14 'suppress_wildcard': '1',
15 'sources': [
16 # core
17 '../third_party/lua/src/lapi.c',
18 '../third_party/lua/src/lcode.c',
19 '../third_party/lua/src/lctype.c',
20 '../third_party/lua/src/ldebug.c',
21 '../third_party/lua/src/ldo.c',
22 '../third_party/lua/src/ldump.c',
23 '../third_party/lua/src/lfunc.c',
24 '../third_party/lua/src/lgc.c',
25 '../third_party/lua/src/llex.c',
26 '../third_party/lua/src/lmem.c',
27 '../third_party/lua/src/lobject.c',
28 '../third_party/lua/src/lopcodes.c',
29 '../third_party/lua/src/lparser.c',
30 '../third_party/lua/src/lstate.c',
31 '../third_party/lua/src/lstring.c',
32 '../third_party/lua/src/ltable.c',
33 '../third_party/lua/src/ltm.c',
34 '../third_party/lua/src/lundump.c',
35 '../third_party/lua/src/lvm.c',
36 '../third_party/lua/src/lzio.c',
37
38 # libraries
39 '../third_party/lua/src/lauxlib.c',
40 '../third_party/lua/src/lbaselib.c',
41 '../third_party/lua/src/lbitlib.c',
42 '../third_party/lua/src/lcorolib.c',
43 '../third_party/lua/src/ldblib.c',
44 '../third_party/lua/src/liolib.c',
45 '../third_party/lua/src/lmathlib.c',
46 '../third_party/lua/src/loslib.c',
47 '../third_party/lua/src/lstrlib.c',
48 '../third_party/lua/src/ltablib.c',
49 '../third_party/lua/src/loadlib.c',
50 '../third_party/lua/src/linit.c',
51 ],
52 'include_dirs': [
53 '../third_party/lua/src/',
54 ],
55 'all_dependent_settings': {
56 'include_dirs': [
57 '../third_party/lua/src/',
58 ],
59 },
60 },
61 ],
62 }
63
64 # Local Variables:
65 # tab-width:2
66 # indent-tabs-mode:nil
67 # End:
68 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« 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