OLD | NEW |
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 12 matching lines...) Expand all Loading... |
23 'include_dirs': [ | 23 'include_dirs': [ |
24 '../gm/', | 24 '../gm/', |
25 ], | 25 ], |
26 }, | 26 }, |
27 }, | 27 }, |
28 { | 28 { |
29 'target_name': 'gm', | 29 'target_name': 'gm', |
30 'type': 'executable', | 30 'type': 'executable', |
31 'include_dirs' : [ | 31 'include_dirs' : [ |
32 '../src/core', | 32 '../src/core', |
| 33 '../src/effects', |
33 '../src/images', | 34 '../src/images', |
34 '../src/effects', | 35 '../src/pipe/utils', |
35 '../src/pipe/utils/', | 36 '../src/utils', |
36 '../src/utils/', | |
37 '../tools', | 37 '../tools', |
38 ], | 38 ], |
39 'includes': [ | 39 'includes': [ |
40 'gmslides.gypi', | 40 'gmslides.gypi', |
41 ], | 41 ], |
42 'sources': [ | 42 'sources': [ |
43 '../gm/gmmain.cpp', | 43 '../gm/gmmain.cpp', |
44 '../gm/system_preferences_default.cpp', | 44 '../gm/system_preferences_default.cpp', |
45 | 45 |
46 '../src/pipe/utils/SamplePipeControllers.h', | 46 '../src/pipe/utils/SamplePipeControllers.h', |
47 '../src/pipe/utils/SamplePipeControllers.cpp', | 47 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 48 '../tools/Resources.cpp', |
48 ], | 49 ], |
49 'dependencies': [ | 50 'dependencies': [ |
50 'skia_lib.gyp:skia_lib', | 51 'etc1.gyp:libetc1', |
51 'flags.gyp:flags', | 52 'flags.gyp:flags', |
52 'gm.gyp:gm_expectations', | 53 'gm.gyp:gm_expectations', |
53 'jsoncpp.gyp:jsoncpp', | 54 'jsoncpp.gyp:jsoncpp', |
54 'pdf.gyp:pdf', | 55 'pdf.gyp:pdf', |
55 'etc1.gyp:libetc1', | 56 'skia_lib.gyp:skia_lib', |
56 ], | 57 ], |
57 'conditions': [ | 58 'conditions': [ |
58 ['skia_android_framework', { | 59 ['skia_android_framework', { |
59 'libraries': [ | 60 'libraries': [ |
60 '-lskia', | 61 '-lskia', |
61 ], | 62 ], |
62 }], | 63 }], |
63 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 64 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
64 'sources': [ | 65 'sources': [ |
65 '../src/utils/SkPDFRasterizer.cpp', | 66 '../src/utils/SkPDFRasterizer.cpp', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 '../src/gpu', | 109 '../src/gpu', |
109 ], | 110 ], |
110 'dependencies': [ | 111 'dependencies': [ |
111 'gputest.gyp:skgputest', | 112 'gputest.gyp:skgputest', |
112 ], | 113 ], |
113 }], | 114 }], |
114 ], | 115 ], |
115 }, | 116 }, |
116 ], | 117 ], |
117 } | 118 } |
OLD | NEW |