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

Side by Side Diff: gyp/gm.gyp

Issue 12632015: Make gm use SkFlags. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: update command_line Created 7 years, 9 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', 8 'target_name': 'gm',
9 'type': 'executable', 9 'type': 'executable',
10 'include_dirs' : [ 10 'include_dirs' : [
11 '../src/core', 11 '../src/core',
12 '../src/effects', 12 '../src/effects',
13 '../src/pipe/utils/', 13 '../src/pipe/utils/',
14 '../src/utils/', 14 '../src/utils/',
15 ], 15 ],
16 'includes': [ 16 'includes': [
17 'gmslides.gypi', 17 'gmslides.gypi',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 '../gm/gm.cpp', 20 '../gm/gm.cpp',
21 '../gm/gmmain.cpp', 21 '../gm/gmmain.cpp',
22 '../gm/system_preferences_default.cpp', 22 '../gm/system_preferences_default.cpp',
23 '../src/pipe/utils/SamplePipeControllers.h', 23 '../src/pipe/utils/SamplePipeControllers.h',
24 '../src/pipe/utils/SamplePipeControllers.cpp', 24 '../src/pipe/utils/SamplePipeControllers.cpp',
25 ], 25 ],
26 'dependencies': [ 26 'dependencies': [
27 'skia_base_libs.gyp:skia_base_libs', 27 'skia_base_libs.gyp:skia_base_libs',
28 'effects.gyp:effects', 28 'effects.gyp:effects',
29 'flags.gyp:flags',
29 'images.gyp:images', 30 'images.gyp:images',
30 'jsoncpp.gyp:jsoncpp', 31 'jsoncpp.gyp:jsoncpp',
31 'pdf.gyp:pdf', 32 'pdf.gyp:pdf',
32 'utils.gyp:utils', 33 'utils.gyp:utils',
33 ], 34 ],
34 'conditions': [ 35 'conditions': [
35 ['skia_os == "mac"', { 36 ['skia_os == "mac"', {
36 'sources!': [ 37 'sources!': [
37 '../gm/system_preferences_default.cpp', 38 '../gm/system_preferences_default.cpp',
38 ], 39 ],
(...skipping 20 matching lines...) Expand all
59 ], 60 ],
60 }, 61 },
61 ], 62 ],
62 } 63 }
63 64
64 # Local Variables: 65 # Local Variables:
65 # tab-width:2 66 # tab-width:2
66 # indent-tabs-mode:nil 67 # indent-tabs-mode:nil
67 # End: 68 # End:
68 # vim: set expandtab tabstop=2 shiftwidth=2: 69 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698