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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
49 'flags.gyp:flags', | 49 'flags.gyp:flags', |
50 'gm.gyp:gm_expectations', | 50 'gm.gyp:gm_expectations', |
51 'jsoncpp.gyp:jsoncpp', | 51 'jsoncpp.gyp:jsoncpp', |
52 'pdf.gyp:pdf', | 52 'pdf.gyp:pdf', |
53 'etc1.gyp:libetc1', | 53 'etc1.gyp:libetc1', |
54 ], | 54 ], |
55 'conditions': [ | 55 'conditions': [ |
56 ['skia_android_framework', { | 56 ['skia_android_framework', { |
57 'libraries': [ | 57 'libraries': [ |
58 '-lskia', | 58 '-lskia', |
59 'jsoncpp.a', | |
djsollen
2014/06/17 21:03:11
why do we do this here and not in the jsoncpp.gyp:
scroggo
2014/06/17 21:12:34
Done.
| |
59 ], | 60 ], |
60 }], | 61 }], |
61 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 62 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
62 'sources': [ | 63 'sources': [ |
63 '../src/utils/SkPDFRasterizer.cpp', | 64 '../src/utils/SkPDFRasterizer.cpp', |
64 ], | 65 ], |
65 }], | 66 }], |
66 ['skia_run_pdfviewer_in_gm', { | 67 ['skia_run_pdfviewer_in_gm', { |
67 'defines': [ | 68 'defines': [ |
68 'SK_BUILD_NATIVE_PDF_RENDERER', | 69 'SK_BUILD_NATIVE_PDF_RENDERER', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 '../src/gpu', | 107 '../src/gpu', |
107 ], | 108 ], |
108 'dependencies': [ | 109 'dependencies': [ |
109 'gputest.gyp:skgputest', | 110 'gputest.gyp:skgputest', |
110 ], | 111 ], |
111 }], | 112 }], |
112 ], | 113 ], |
113 }, | 114 }, |
114 ], | 115 ], |
115 } | 116 } |
OLD | NEW |