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

Side by Side Diff: gyp/experimental.gyp

Issue 890873003: update example (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove multiple example cruft Created 5 years, 10 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/SkiaExamples/SkExample.cpp ('k') | gyp/views.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build experimental directory. 1 # GYP file to build experimental directory.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'experimental', 5 'target_name': 'experimental',
6 'type': 'static_library', 6 'type': 'static_library',
7 'include_dirs': [ 7 'include_dirs': [
8 '../include/config', 8 '../include/config',
9 '../include/core', 9 '../include/core',
10 ], 10 ],
11 'sources': [ 11 'sources': [
12 '../experimental/SkSetPoly3To3.cpp', 12 '../experimental/SkSetPoly3To3.cpp',
13 '../experimental/SkSetPoly3To3_A.cpp', 13 '../experimental/SkSetPoly3To3_A.cpp',
14 '../experimental/SkSetPoly3To3_D.cpp', 14 '../experimental/SkSetPoly3To3_D.cpp',
15 ], 15 ],
16 'direct_dependent_settings': { 16 'direct_dependent_settings': {
17 'include_dirs': [ 17 'include_dirs': [
18 '../experimental', 18 '../experimental',
19 ], 19 ],
20 }, 20 },
21 }, 21 },
22 { 22 {
23 'target_name': 'SkiaExamples', 23 'target_name': 'SkiaExamples',
24 'type': 'executable', 24 'type': 'executable',
25 'mac_bundle' : 1, 25 'mac_bundle' : 1,
26 'sources': [ 26 'sources': [
27 '../experimental/SkiaExamples/SkExample.h', 27 '../experimental/SkiaExamples/SkExample.h',
28 '../experimental/SkiaExamples/SkExample.cpp', 28 '../experimental/SkiaExamples/SkExample.cpp',
29 '../experimental/SkiaExamples/HelloSkiaExample.cpp',
30 ], 29 ],
31 'dependencies': [ 30 'dependencies': [
32 'flags.gyp:flags', 31 'flags.gyp:flags',
33 'skia_lib.gyp:skia_lib', 32 'skia_lib.gyp:skia_lib',
34 'views.gyp:views', 33 'views.gyp:views',
35 ], 34 ],
36 'conditions' : [ 35 'conditions' : [
37 [ 'skia_gpu == 1', { 36 [ 'skia_gpu == 1', {
38 'include_dirs' : [ 37 'include_dirs' : [
39 '../src/gpu', 38 '../include/gpu',
40 ], 39 ],
41 }], 40 }],
42 [ 'skia_os == "win"', { 41 [ 'skia_os == "win"', {
43 'sources' : [ 42 'sources' : [
44 '../src/views/win/SkOSWindow_Win.cpp', 43 '../src/views/win/SkOSWindow_Win.cpp',
45 '../src/views/win/skia_win.cpp', 44 '../src/views/win/skia_win.cpp',
46 ], 45 ],
47 }], 46 }],
48 [ 'skia_os == "mac"', { 47 [ 'skia_os == "mac"', {
49 'sources': [ 48 'sources': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 '../tools/flags', 99 '../tools/flags',
101 ], 100 ],
102 'dependencies': [ 101 'dependencies': [
103 'pdf.gyp:pdf', 102 'pdf.gyp:pdf',
104 'skia_lib.gyp:skia_lib', 103 'skia_lib.gyp:skia_lib',
105 'tools.gyp:sk_tool_utils', 104 'tools.gyp:sk_tool_utils',
106 ], 105 ],
107 }, 106 },
108 ], 107 ],
109 } 108 }
OLDNEW
« no previous file with comments | « experimental/SkiaExamples/SkExample.cpp ('k') | gyp/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698