summaryrefslogtreecommitdiff
path: root/gm.gyp
diff options
context:
space:
mode:
authorBaligh Uddin <baligh@google.com>2013-11-01 16:01:50 -0700
committerBaligh Uddin <baligh@google.com>2013-11-01 16:01:50 -0700
commit492eca10cdbfb13f963abf4b0f16c6536abf17b5 (patch)
tree8ec7fd160da63434c3467634aa57235228813d41 /gm.gyp
parent226525d75d212275020646c41a5c25ee4817fa5b (diff)
parentd194b7120ce19bf8fd18b65be7851865b7d88e9c (diff)
downloadgyp-idea133.tar.gz
Merge remote-tracking branch 'origin/kitkat-dev'chromium_org-pre-replicationidea133
Diffstat (limited to 'gm.gyp')
-rw-r--r--gm.gyp96
1 files changed, 96 insertions, 0 deletions
diff --git a/gm.gyp b/gm.gyp
new file mode 100644
index 0000000..6608aba
--- /dev/null
+++ b/gm.gyp
@@ -0,0 +1,96 @@
+# GYP file to build the "gm" (golden master) executable.
+{
+ 'includes': [
+ 'apptype_console.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'gm_expectations',
+ 'type': 'static_library',
+ 'include_dirs' : [
+ '../src/utils/',
+ ],
+ 'sources': [
+ '../gm/gm_expectations.h',
+ '../gm/gm_expectations.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'jsoncpp.gyp:jsoncpp',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../gm/',
+ ],
+ },
+ },
+ {
+ 'target_name': 'gm',
+ 'type': 'executable',
+ 'include_dirs' : [
+ '../src/core',
+ '../src/effects',
+ '../src/pipe/utils/',
+ '../src/utils/',
+ '../src/utils/debugger',
+ ],
+ 'includes': [
+ 'gmslides.gypi',
+ ],
+ 'sources': [
+ '../gm/gm.cpp',
+ '../gm/gmmain.cpp',
+ '../gm/system_preferences_default.cpp',
+
+ '../src/pipe/utils/SamplePipeControllers.h',
+ '../src/pipe/utils/SamplePipeControllers.cpp',
+
+ '../src/utils/debugger/SkDrawCommand.h',
+ '../src/utils/debugger/SkDrawCommand.cpp',
+ '../src/utils/debugger/SkDebugCanvas.h',
+ '../src/utils/debugger/SkDebugCanvas.cpp',
+ '../src/utils/debugger/SkObjectParser.h',
+ '../src/utils/debugger/SkObjectParser.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'flags.gyp:flags',
+ 'gm.gyp:gm_expectations',
+ 'jsoncpp.gyp:jsoncpp',
+ 'pdf.gyp:pdf',
+ ],
+ 'conditions': [
+ ['skia_os == "mac"', {
+ 'sources!': [
+ '../gm/system_preferences_default.cpp',
+ ],
+ 'sources': [
+ '../gm/system_preferences_mac.mm',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
+ ],
+ },
+ }],
+ ['skia_os == "win"', {
+ 'dependencies': [
+ 'xps.gyp:xps',
+ ],
+ }],
+ ['skia_gpu == 1', {
+ 'include_dirs': [
+ '../src/gpu',
+ ],
+ }],
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: