Index: gyp/skiaserve.gyp |
diff --git a/gyp/kilobench.gyp b/gyp/skiaserve.gyp |
similarity index 59% |
copy from gyp/kilobench.gyp |
copy to gyp/skiaserve.gyp |
index fbd766f6dc449a689792f0d364aacff4c4fc2b26..806d72f9b8aa949d3ab623f8aeacbf1d6d50df0a 100644 |
--- a/gyp/kilobench.gyp |
+++ b/gyp/skiaserve.gyp |
@@ -10,18 +10,15 @@ |
], |
'targets': [ |
{ |
- 'target_name': 'kilobench', |
+ 'target_name': 'skiaserve', |
'type': 'executable', |
'include_dirs': [ |
- '../bench', |
- '../gm', |
'../src/core', |
- '../tools/VisualBench', |
+ #TODO make this a real project |
+ '../third_party/externals/microhttpd/src/include', |
], |
'sources': [ |
- '<!@(python find.py ../tools/kilobench "*.cpp")', |
- '../bench/Benchmark.cpp', |
- '../tools/VisualBench/VisualSKPBench.cpp', |
+ '<!@(python find.py ../tools/skiaserve "*.cpp")', |
], |
'dependencies': [ |
'flags.gyp:flags', |
@@ -31,8 +28,16 @@ |
'tools.gyp:crash_handler', |
'tools.gyp:proc_stats', |
'tools.gyp:resources', |
- 'tools.gyp:timer', |
], |
+ #TODO real libmicrohttpd gyp |
+ 'link_settings': { |
+ 'ldflags': [ |
+ '-L../../third_party/externals/microhttpd/src/microhttpd/.libs', |
+ ], |
+ 'libraries': [ |
+ '-lmicrohttpd', |
+ ], |
+ }, |
}, |
], |
} |