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', | |
17 ], | 16 ], |
18 'dependencies': [ | 17 'dependencies': [ |
19 'crash_handler.gyp:CrashHandler', | 18 'crash_handler.gyp:CrashHandler', |
20 'jsoncpp.gyp:jsoncpp', | 19 'jsoncpp.gyp:jsoncpp', |
| 20 'sk_tool_utils.gyp:sk_tool_utils', |
21 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
22 ], | 22 ], |
23 'direct_dependent_settings': { | 23 'direct_dependent_settings': { |
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', |
(...skipping 78 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 |