| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright 2013 Google Inc. | 2 # Copyright 2013 Google Inc. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 # | 6 # |
| 7 | 7 |
| 8 | |
| 9 { | 8 { |
| 10 'targets': [ | 9 'targets': [ |
| 11 { | 10 { |
| 12 'target_name': 'lua', | 11 'target_name': 'lua', |
| 13 'type': 'static_library', | 12 'type': 'static_library', |
| 14 'suppress_wildcard': '1', | 13 'suppress_wildcard': '1', |
| 15 'sources': [ | 14 'sources': [ |
| 16 # core | 15 # core |
| 17 '../third_party/lua/src/lapi.c', | 16 '../third_party/lua/src/lapi.c', |
| 18 '../third_party/lua/src/lcode.c', | 17 '../third_party/lua/src/lcode.c', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'include_dirs': [ | 55 'include_dirs': [ |
| 57 '../third_party/lua/src/', | 56 '../third_party/lua/src/', |
| 58 ], | 57 ], |
| 59 }, | 58 }, |
| 60 'defines': [ | 59 'defines': [ |
| 61 "getlocaledecpoint()='.'" | 60 "getlocaledecpoint()='.'" |
| 62 ], | 61 ], |
| 63 }, | 62 }, |
| 64 ], | 63 ], |
| 65 } | 64 } |
| 66 | |
| 67 # Local Variables: | |
| 68 # tab-width:2 | |
| 69 # indent-tabs-mode:nil | |
| 70 # End: | |
| 71 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |