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

Side by Side Diff: gyp/experimental.gyp

Issue 890873003: update example (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix mac, remove space 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
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 ],
(...skipping 18 matching lines...) Expand all
29 '../experimental/SkiaExamples/HelloSkiaExample.cpp', 29 '../experimental/SkiaExamples/HelloSkiaExample.cpp',
30 ], 30 ],
31 'dependencies': [ 31 'dependencies': [
32 'flags.gyp:flags', 32 'flags.gyp:flags',
33 'skia_lib.gyp:skia_lib', 33 'skia_lib.gyp:skia_lib',
34 'views.gyp:views', 34 'views.gyp:views',
35 ], 35 ],
36 'conditions' : [ 36 'conditions' : [
37 [ 'skia_gpu == 1', { 37 [ 'skia_gpu == 1', {
38 'include_dirs' : [ 38 'include_dirs' : [
39 '../src/gpu', 39 '../include/gpu',
40 ], 40 ],
41 }], 41 }],
42 [ 'skia_os == "win"', { 42 [ 'skia_os == "win"', {
43 'sources' : [ 43 'sources' : [
44 '../src/views/win/SkOSWindow_Win.cpp', 44 '../src/views/win/SkOSWindow_Win.cpp',
45 '../src/views/win/skia_win.cpp', 45 '../src/views/win/skia_win.cpp',
46 ], 46 ],
47 }], 47 }],
48 [ 'skia_os == "mac"', { 48 [ 'skia_os == "mac"', {
49 'sources': [ 49 'sources': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 '../tools/flags', 100 '../tools/flags',
101 ], 101 ],
102 'dependencies': [ 102 'dependencies': [
103 'pdf.gyp:pdf', 103 'pdf.gyp:pdf',
104 'skia_lib.gyp:skia_lib', 104 'skia_lib.gyp:skia_lib',
105 'tools.gyp:sk_tool_utils', 105 'tools.gyp:sk_tool_utils',
106 ], 106 ],
107 }, 107 },
108 ], 108 ],
109 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698