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' : [ |
11 '../src/utils/', | 11 '../src/utils/', |
12 ], | 12 ], |
13 'sources': [ | 13 'sources': [ |
14 '../gm/gm_expectations.h', | 14 '../gm/gm_expectations.h', |
15 '../gm/gm_expectations.cpp', | 15 '../gm/gm_expectations.cpp', |
16 '../tools/sk_tool_utils.cpp', | 16 '../tools/sk_tool_utils.cpp', |
17 ], | 17 ], |
18 'dependencies': [ | 18 'dependencies': [ |
| 19 'crash_handler.gyp:CrashHandler', |
| 20 'jsoncpp.gyp:jsoncpp', |
19 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
20 'jsoncpp.gyp:jsoncpp', | |
21 ], | 22 ], |
22 'direct_dependent_settings': { | 23 'direct_dependent_settings': { |
23 'include_dirs': [ | 24 'include_dirs': [ |
24 '../gm/', | 25 '../gm/', |
25 ], | 26 ], |
26 }, | 27 }, |
27 }, | 28 }, |
28 { | 29 { |
29 'target_name': 'gm', | 30 'target_name': 'gm', |
30 'type': 'executable', | 31 'type': 'executable', |
(...skipping 77 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 |