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