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

Side by Side Diff: gyp/gm.gyp

Issue 14670021: Write/compare against expectations in skimage tool. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Instead of appending a string of potentially infinite length, append a single character. Created 7 years, 7 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
« no previous file with comments | « gm/gm_expectations.cpp ('k') | gyp/tools.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 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',
9 'type': 'static_library',
10 'include_dirs' : [
11 '../include/core/',
12 '../src/utils/',
13 ],
14 'sources': [
15 '../gm/gm_expectations.h',
16 '../gm/gm_expectations.cpp',
17 ],
18 'dependencies': [
19 'skia_base_libs.gyp:skia_base_libs',
20 'core.gyp:core',
21 'images.gyp:images',
22 'jsoncpp.gyp:jsoncpp',
23 'utils.gyp:utils',
24 ],
25 'direct_dependent_settings': {
26 'include_dirs': [
27 '../gm/',
28 ],
29 },
30 },
31 {
8 'target_name': 'gm', 32 'target_name': 'gm',
9 'type': 'executable', 33 'type': 'executable',
10 'include_dirs' : [ 34 'include_dirs' : [
11 '../debugger', 35 '../debugger',
12 '../src/core', 36 '../src/core',
13 '../src/effects', 37 '../src/effects',
14 '../src/pipe/utils/', 38 '../src/pipe/utils/',
15 '../src/utils/', 39 '../src/utils/',
16 ], 40 ],
17 'includes': [ 41 'includes': [
18 'gmslides.gypi', 42 'gmslides.gypi',
19 ], 43 ],
20 'sources': [ 44 'sources': [
21 '../debugger/SkDrawCommand.h', 45 '../debugger/SkDrawCommand.h',
22 '../debugger/SkDrawCommand.cpp', 46 '../debugger/SkDrawCommand.cpp',
23 '../debugger/SkDebugCanvas.h', 47 '../debugger/SkDebugCanvas.h',
24 '../debugger/SkDebugCanvas.cpp', 48 '../debugger/SkDebugCanvas.cpp',
25 '../debugger/SkObjectParser.h', 49 '../debugger/SkObjectParser.h',
26 '../debugger/SkObjectParser.cpp', 50 '../debugger/SkObjectParser.cpp',
27 51
28 '../gm/gm.cpp', 52 '../gm/gm.cpp',
29 '../gm/gm_expectations.cpp',
30 '../gm/gmmain.cpp', 53 '../gm/gmmain.cpp',
31 '../gm/system_preferences_default.cpp', 54 '../gm/system_preferences_default.cpp',
32 55
33 '../src/pipe/utils/SamplePipeControllers.h', 56 '../src/pipe/utils/SamplePipeControllers.h',
34 '../src/pipe/utils/SamplePipeControllers.cpp', 57 '../src/pipe/utils/SamplePipeControllers.cpp',
35 ], 58 ],
36 'dependencies': [ 59 'dependencies': [
37 'skia_base_libs.gyp:skia_base_libs', 60 'skia_base_libs.gyp:skia_base_libs',
38 'effects.gyp:effects', 61 'effects.gyp:effects',
39 'flags.gyp:flags', 62 'flags.gyp:flags',
63 'gm.gyp:gm_expectations',
40 'images.gyp:images', 64 'images.gyp:images',
41 'jsoncpp.gyp:jsoncpp', 65 'jsoncpp.gyp:jsoncpp',
42 'pdf.gyp:pdf', 66 'pdf.gyp:pdf',
43 'utils.gyp:utils', 67 'utils.gyp:utils',
44 ], 68 ],
45 'conditions': [ 69 'conditions': [
46 ['skia_os == "mac"', { 70 ['skia_os == "mac"', {
47 'sources!': [ 71 'sources!': [
48 '../gm/system_preferences_default.cpp', 72 '../gm/system_preferences_default.cpp',
49 ], 73 ],
(...skipping 20 matching lines...) Expand all
70 ], 94 ],
71 }, 95 },
72 ], 96 ],
73 } 97 }
74 98
75 # Local Variables: 99 # Local Variables:
76 # tab-width:2 100 # tab-width:2
77 # indent-tabs-mode:nil 101 # indent-tabs-mode:nil
78 # End: 102 # End:
79 # vim: set expandtab tabstop=2 shiftwidth=2: 103 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gm/gm_expectations.cpp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698