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

Side by Side Diff: gyp/gm.gyp

Issue 23352003: Create new target to hold gpu test code, enable direct testing of GrEffects in GM. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: add parens Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # GYP file to build the "gm" (golden master) executable. 1 # GYP file to build the "gm" (golden master) executable.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gm_expectations', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 }], 76 }],
77 ['skia_os == "win"', { 77 ['skia_os == "win"', {
78 'dependencies': [ 78 'dependencies': [
79 'xps.gyp:xps', 79 'xps.gyp:xps',
80 ], 80 ],
81 }], 81 }],
82 ['skia_gpu == 1', { 82 ['skia_gpu == 1', {
83 'include_dirs': [ 83 'include_dirs': [
84 '../src/gpu', 84 '../src/gpu',
85 ], 85 ],
86 'dependencies': [
87 'gputest.gyp:skgputest',
88 ],
86 }], 89 }],
87 ], 90 ],
88 }, 91 },
89 ], 92 ],
90 } 93 }
91 94
92 # Local Variables: 95 # Local Variables:
93 # tab-width:2 96 # tab-width:2
94 # indent-tabs-mode:nil 97 # indent-tabs-mode:nil
95 # End: 98 # End:
96 # vim: set expandtab tabstop=2 shiftwidth=2: 99 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698