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

Unified Diff: gyp/dm.gyp

Issue 22839016: Skeleton of DM (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: one last sync Created 7 years, 2 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 | « dm/README ('k') | gyp/everything.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/dm.gyp
diff --git a/gyp/dm.gyp b/gyp/dm.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..315f03b463a5f6403c4cac82c95abb1acdf779b9
--- /dev/null
+++ b/gyp/dm.gyp
@@ -0,0 +1,43 @@
+# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
+# vim: set expandtab tabstop=4 shiftwidth=4
+{
+ 'includes': [ 'apptype_console.gypi' ],
+
+ 'targets': [{
+ 'target_name': 'dm',
+ 'type': 'executable',
+ 'include_dirs': [
+ '../dm',
+ '../gm',
+ '../src/core',
+ '../src/effects',
+ '../src/utils',
+ '../src/utils/debugger',
+ ],
+ 'includes': [ 'gmslides.gypi' ],
+ 'sources': [
+ '../dm/DM.cpp',
+ '../dm/DMComparisonTask.cpp',
+ '../dm/DMCpuTask.cpp',
+ '../dm/DMGpuTask.cpp',
+ '../dm/DMReplayTask.cpp',
+ '../dm/DMReporter.cpp',
+ '../dm/DMTask.cpp',
+ '../dm/DMTaskRunner.cpp',
+ '../dm/DMUtil.cpp',
+ '../gm/gm.cpp',
+ '../gm/gm_expectations.cpp',
+
+ # TODO: split these out as a library in src/utils/debugger.
+ '../src/utils/debugger/SkDebugCanvas.cpp',
+ '../src/utils/debugger/SkDrawCommand.cpp',
+ '../src/utils/debugger/SkObjectParser.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'flags.gyp:flags',
+ 'jsoncpp.gyp:jsoncpp',
+ 'gputest.gyp:skgputest',
+ ],
+ }]
+}
« no previous file with comments | « dm/README ('k') | gyp/everything.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698