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

Side by Side Diff: gyp/experimental.gyp

Issue 895103002: remove remaining parts os SkExample (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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/SkiaExamples-Info.plist ('k') | no next file » | 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',
24 'type': 'executable',
25 'mac_bundle' : 1,
26 'sources': [
27 '../experimental/SkiaExamples/SkExample.h',
28 '../experimental/SkiaExamples/SkExample.cpp',
29 ],
30 'dependencies': [
31 'flags.gyp:flags',
32 'skia_lib.gyp:skia_lib',
33 'views.gyp:views',
34 ],
35 'conditions' : [
36 [ 'skia_gpu == 1', {
37 'include_dirs' : [
38 '../include/gpu',
39 ],
40 }],
41 [ 'skia_os == "win"', {
42 'sources' : [
43 '../src/views/win/SkOSWindow_Win.cpp',
44 '../src/views/win/skia_win.cpp',
45 ],
46 }],
47 [ 'skia_os == "mac"', {
48 'sources': [
49 '../experimental/SkiaExamples/SkiaExamples-Info.plist',
50 '../experimental/SkiaExamples/SkExampleNSView.h',
51 '../experimental/SkiaExamples/SkExampleNSView.mm',
52 '../src/views/mac/SampleAppDelegate.h',
53 '../src/views/mac/SampleAppDelegate.mm',
54 '../src/views/mac/SkEventNotifier.mm',
55 '../src/views/mac/skia_mac.mm',
56 '../src/views/mac/SkNSView.h',
57 '../src/views/mac/SkNSView.mm',
58 '../src/views/mac/SkOptionsTableView.h',
59 '../src/views/mac/SkOptionsTableView.mm',
60 '../src/views/mac/SkOSWindow_Mac.mm',
61 '../src/views/mac/SkTextFieldCell.h',
62 '../src/views/mac/SkTextFieldCell.m',
63 ],
64 'include_dirs' : [
65 '../src/views/mac/'
66 ],
67 'xcode_settings' : {
68 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p list',
69 },
70 'mac_bundle_resources' : [
71 '../experimental/SkiaExamples/SkiaExamples.xib'
72 ],
73 }],
74 ],
75 },
76 {
77 'target_name': 'multipage_pdf_profiler', 23 'target_name': 'multipage_pdf_profiler',
78 'type': 'executable', 24 'type': 'executable',
79 'sources': [ 25 'sources': [
80 '../experimental/tools/multipage_pdf_profiler.cpp', 26 '../experimental/tools/multipage_pdf_profiler.cpp',
81 '../experimental/tools/PageCachingDocument.cpp', 27 '../experimental/tools/PageCachingDocument.cpp',
82 ], 28 ],
83 'dependencies': [ 29 'dependencies': [
84 'skia_lib.gyp:skia_lib', 30 'skia_lib.gyp:skia_lib',
85 'pdf.gyp:pdf', 31 'pdf.gyp:pdf',
86 'tools.gyp:proc_stats', 32 'tools.gyp:proc_stats',
(...skipping 12 matching lines...) Expand all
99 '../tools/flags', 45 '../tools/flags',
100 ], 46 ],
101 'dependencies': [ 47 'dependencies': [
102 'pdf.gyp:pdf', 48 'pdf.gyp:pdf',
103 'skia_lib.gyp:skia_lib', 49 'skia_lib.gyp:skia_lib',
104 'tools.gyp:sk_tool_utils', 50 'tools.gyp:sk_tool_utils',
105 ], 51 ],
106 }, 52 },
107 ], 53 ],
108 } 54 }
OLDNEW
« no previous file with comments | « experimental/SkiaExamples/SkiaExamples-Info.plist ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698