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 ], | 17 ], |
17 'dependencies': [ | 18 'dependencies': [ |
18 'skia_lib.gyp:skia_lib', | 19 'skia_lib.gyp:skia_lib', |
19 'jsoncpp.gyp:jsoncpp', | 20 'jsoncpp.gyp:jsoncpp', |
20 ], | 21 ], |
21 'direct_dependent_settings': { | 22 'direct_dependent_settings': { |
22 'include_dirs': [ | 23 'include_dirs': [ |
23 '../gm/', | 24 '../gm/', |
24 ], | 25 ], |
25 }, | 26 }, |
26 }, | 27 }, |
27 { | 28 { |
28 'target_name': 'gm', | 29 'target_name': 'gm', |
29 'type': 'executable', | 30 'type': 'executable', |
30 'include_dirs' : [ | 31 'include_dirs' : [ |
31 '../src/core', | 32 '../src/core', |
32 '../src/images', | 33 '../src/images', |
33 '../src/effects', | 34 '../src/effects', |
34 '../src/pipe/utils/', | 35 '../src/pipe/utils/', |
35 '../src/utils/', | 36 '../src/utils/', |
| 37 '../tools', |
36 ], | 38 ], |
37 'includes': [ | 39 'includes': [ |
38 'gmslides.gypi', | 40 'gmslides.gypi', |
39 ], | 41 ], |
40 'sources': [ | 42 'sources': [ |
41 '../gm/gmmain.cpp', | 43 '../gm/gmmain.cpp', |
42 '../gm/system_preferences_default.cpp', | 44 '../gm/system_preferences_default.cpp', |
43 | 45 |
44 '../src/pipe/utils/SamplePipeControllers.h', | 46 '../src/pipe/utils/SamplePipeControllers.h', |
45 '../src/pipe/utils/SamplePipeControllers.cpp', | 47 '../src/pipe/utils/SamplePipeControllers.cpp', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 '../src/gpu', | 108 '../src/gpu', |
107 ], | 109 ], |
108 'dependencies': [ | 110 'dependencies': [ |
109 'gputest.gyp:skgputest', | 111 'gputest.gyp:skgputest', |
110 ], | 112 ], |
111 }], | 113 }], |
112 ], | 114 ], |
113 }, | 115 }, |
114 ], | 116 ], |
115 } | 117 } |
OLD | NEW |