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

Side by Side Diff: gyp/gm.gyp

Issue 16638014: Expose debugger backend classes externally. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Relocated to src/utils/debugger/ Created 7 years, 6 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 | « gyp/debugger.gyp ('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', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 21 matching lines...) Expand all
32 '../debugger', 32 '../debugger',
33 '../src/core', 33 '../src/core',
34 '../src/effects', 34 '../src/effects',
35 '../src/pipe/utils/', 35 '../src/pipe/utils/',
36 '../src/utils/', 36 '../src/utils/',
37 ], 37 ],
38 'includes': [ 38 'includes': [
39 'gmslides.gypi', 39 'gmslides.gypi',
40 ], 40 ],
41 'sources': [ 41 'sources': [
42 '../debugger/SkDrawCommand.h',
43 '../debugger/SkDrawCommand.cpp',
44 '../debugger/SkDebugCanvas.h',
45 '../debugger/SkDebugCanvas.cpp',
46 '../debugger/SkObjectParser.h',
47 '../debugger/SkObjectParser.cpp',
48
49 '../gm/gm.cpp', 42 '../gm/gm.cpp',
50 '../gm/gmmain.cpp', 43 '../gm/gmmain.cpp',
51 '../gm/system_preferences_default.cpp', 44 '../gm/system_preferences_default.cpp',
52 45
53 '../src/pipe/utils/SamplePipeControllers.h', 46 '../src/pipe/utils/SamplePipeControllers.h',
54 '../src/pipe/utils/SamplePipeControllers.cpp', 47 '../src/pipe/utils/SamplePipeControllers.cpp',
48
49 '../src/utils/debugger/SkDrawCommand.h',
50 '../src/utils/debugger/SkDrawCommand.cpp',
51 '../src/utils/debugger/SkDebugCanvas.h',
52 '../src/utils/debugger/SkDebugCanvas.cpp',
53 '../src/utils/debugger/SkObjectParser.h',
54 '../src/utils/debugger/SkObjectParser.cpp',
55 ], 55 ],
56 'dependencies': [ 56 'dependencies': [
57 'skia_lib.gyp:skia_lib', 57 'skia_lib.gyp:skia_lib',
58 'flags.gyp:flags', 58 'flags.gyp:flags',
59 'gm.gyp:gm_expectations', 59 'gm.gyp:gm_expectations',
60 'jsoncpp.gyp:jsoncpp', 60 'jsoncpp.gyp:jsoncpp',
61 'pdf.gyp:pdf', 61 'pdf.gyp:pdf',
62 ], 62 ],
63 'conditions': [ 63 'conditions': [
64 ['skia_os == "mac"', { 64 ['skia_os == "mac"', {
(...skipping 23 matching lines...) Expand all
88 ], 88 ],
89 }, 89 },
90 ], 90 ],
91 } 91 }
92 92
93 # Local Variables: 93 # Local Variables:
94 # tab-width:2 94 # tab-width:2
95 # indent-tabs-mode:nil 95 # indent-tabs-mode:nil
96 # End: 96 # End:
97 # vim: set expandtab tabstop=2 shiftwidth=2: 97 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/debugger.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698