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

Side by Side Diff: experimental/webtry/templates/template.gyp

Issue 553333004: gyp build of skfiddle apps, take 2 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address formatting and error checking comments from Joe Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « experimental/webtry/setup/continue_install ('k') | experimental/webtry/webtry.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'targets': [
3 {
4 'configurations': {
5 'Debug': { },
6 'Release': { }
7 },
8 'target_name': '{{.Hash}}',
9 'type': 'executable',
10 'dependencies': [
11 '../skia/gyp/skia_lib.gyp:skia_lib',
12 '../skia/gyp/flags.gyp:flags'
13 ],
14 'include_dirs': [
15 '../skia/include/config',
16 '../skia/include/core',
17 '../skia/tools/flags',
18 '../skia/src/core',
19 ],
20 'conditions': [
21 ['skia_os == "mac"', {
22 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1']
23 }]
24 ],
25 'sources': [
26 'src/{{.Hash}}.cpp',
27 '../skia/experimental/webtry/main.cpp'
28 ],
29 'ldflags': [
30 '-lskia', '-stdlib=libc++', '-std=c++11'
31 ],
32 'cflags': [
33 '-Werror', '-W', '-Wall', '-Wextra', '-Wno-unused-parameter', '-g', '-O0 '
34 ]
35 }
36 ]
37 }
OLDNEW
« no previous file with comments | « experimental/webtry/setup/continue_install ('k') | experimental/webtry/webtry.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698