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 'flags.gyp:flags', |
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', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 ], | 102 ], |
102 }, | 103 }, |
103 ], | 104 ], |
104 } | 105 } |
105 | 106 |
106 # Local Variables: | 107 # Local Variables: |
107 # tab-width:2 | 108 # tab-width:2 |
108 # indent-tabs-mode:nil | 109 # indent-tabs-mode:nil |
109 # End: | 110 # End: |
110 # vim: set expandtab tabstop=2 shiftwidth=2: | 111 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |