aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/webtry/templates/template.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/webtry/templates/template.gyp')
-rw-r--r--experimental/webtry/templates/template.gyp37
1 files changed, 37 insertions, 0 deletions
diff --git a/experimental/webtry/templates/template.gyp b/experimental/webtry/templates/template.gyp
new file mode 100644
index 0000000000..d0e7ecd990
--- /dev/null
+++ b/experimental/webtry/templates/template.gyp
@@ -0,0 +1,37 @@
+{
+ 'targets': [
+ {
+ 'configurations': {
+ 'Debug': { },
+ 'Release': { }
+ },
+ 'target_name': '{{.Hash}}',
+ 'type': 'executable',
+ 'dependencies': [
+ '../skia/gyp/skia_lib.gyp:skia_lib',
+ '../skia/gyp/flags.gyp:flags'
+ ],
+ 'include_dirs': [
+ '../skia/include/config',
+ '../skia/include/core',
+ '../skia/tools/flags',
+ '../skia/src/core',
+ ],
+ 'conditions': [
+ ['skia_os == "mac"', {
+ 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1']
+ }]
+ ],
+ 'sources': [
+ 'src/{{.Hash}}.cpp',
+ '../skia/experimental/webtry/main.cpp'
+ ],
+ 'ldflags': [
+ '-lskia', '-stdlib=libc++', '-std=c++11'
+ ],
+ 'cflags': [
+ '-Werror', '-W', '-Wall', '-Wextra', '-Wno-unused-parameter', '-g', '-O0'
+ ]
+ }
+ ]
+}