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

Side by Side Diff: gyp/gputest.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
(Empty)
1 {
2 'targets': [
3 {
4 'target_name': 'skgputest',
5 'product_name': 'skia_skgputest',
6 'type': 'static_library',
7 'standalone_static_library': 1,
8 'dependencies': [
9 'core.gyp:core',
10 'gpu.gyp:skgpu',
11 ],
12 'include_dirs': [
13 '../include/gpu',
14 '../include/utils',
15 '../src/core',
16 '../src/gpu',
17 ],
18 'direct_dependent_settings': {
19 'include_dirs': [
20 '../src/gpu',
21 ],
22 },
23 'sources': [
24 '<(skia_src_path)/gpu/GrTest.cpp',
25 '<(skia_src_path)/gpu/GrTest.h',
26 ],
27 'defines': [
28 'GR_IMPLEMENTATION=1',
29 ],
30 },
31 ],
32 }
33
34 # Local Variables:
35 # tab-width:2
36 # indent-tabs-mode:nil
37 # End:
38 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698