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 ], | 16 ], |
17 'dependencies': [ | 17 'dependencies': [ |
18 'skia_lib.gyp:skia_lib', | 18 'skia_lib.gyp:skia_lib', |
19 'jsoncpp.gyp:jsoncpp', | 19 'jsoncpp.gyp:jsoncpp', |
20 'utils.gyp:utils', | |
21 ], | 20 ], |
22 'direct_dependent_settings': { | 21 'direct_dependent_settings': { |
23 'include_dirs': [ | 22 'include_dirs': [ |
24 '../gm/', | 23 '../gm/', |
25 ], | 24 ], |
26 }, | 25 }, |
27 }, | 26 }, |
28 { | 27 { |
29 'target_name': 'gm', | 28 'target_name': 'gm', |
30 'type': 'executable', | 29 'type': 'executable', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 '../src/gpu', | 100 '../src/gpu', |
102 ], | 101 ], |
103 'dependencies': [ | 102 'dependencies': [ |
104 'gputest.gyp:skgputest', | 103 'gputest.gyp:skgputest', |
105 ], | 104 ], |
106 }], | 105 }], |
107 ], | 106 ], |
108 }, | 107 }, |
109 ], | 108 ], |
110 } | 109 } |
OLD | NEW |