Chromium Code Reviews| Index: gyp/tools.gyp |
| diff --git a/gyp/tools.gyp b/gyp/tools.gyp |
| index d960cdc1289b97e2227fb27053aabbf4a3f87d7f..24eeddc1616fdf5aa2c843d8bfe4060faeafdcda 100644 |
| --- a/gyp/tools.gyp |
| +++ b/gyp/tools.gyp |
| @@ -23,6 +23,7 @@ |
| 'skdiff', |
| 'skhello', |
| 'skimage', |
| + 'sklua', |
| ], |
| }, |
| { |
| @@ -98,6 +99,31 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'sklua', |
| + 'type': 'shared_library', |
| + 'sources': [ |
| + '../src/utils/SkLuaCanvas.cpp', |
| + '../src/utils/SkLua.cpp', |
| + ], |
| + 'include_dirs': [ |
| + '../third_party/lua/src/', |
| + ], |
| + 'dependencies': [ |
| + 'lua.gyp:lua', |
| + 'pdf.gyp:pdf', |
| + 'skia_lib.gyp:skia_lib', |
| + ], |
| + 'conditions': [ |
| + ['skia_os != "win"', |
| + { |
| + 'ldflags': [ |
| + '-Wl,-rpath', '-Wl,./', |
|
bungeman-skia
2013/06/19 20:35:24
rpath is rather heavy handed, (I think) we should
|
| + ], |
| + }, |
| + ], |
| + ], |
| + }, |
| + { |
| 'target_name': 'lua_app', |
| 'type': 'executable', |
| 'sources': [ |