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', | |
bungeman-skia
2014/05/08 16:25:28
Can't do this, already in skia_lib.gyp.
| |
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', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 '../src/gpu', | 101 '../src/gpu', |
101 ], | 102 ], |
102 'dependencies': [ | 103 'dependencies': [ |
103 'gputest.gyp:skgputest', | 104 'gputest.gyp:skgputest', |
104 ], | 105 ], |
105 }], | 106 }], |
106 ], | 107 ], |
107 }, | 108 }, |
108 ], | 109 ], |
109 } | 110 } |
OLD | NEW |