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

Unified Diff: gyp/skiaserve.gyp

Issue 1621753002: First rough draft of skiaserve (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 4 years, 11 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 | « gyp/most.gyp ('k') | tools/skiaserve/skiaserve.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ ],
+ },
},
],
}
« no previous file with comments | « gyp/most.gyp ('k') | tools/skiaserve/skiaserve.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698