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 '../include/core/', | |
12 '../src/utils/', | 11 '../src/utils/', |
13 ], | 12 ], |
14 'sources': [ | 13 'sources': [ |
15 '../gm/gm_expectations.h', | 14 '../gm/gm_expectations.h', |
16 '../gm/gm_expectations.cpp', | 15 '../gm/gm_expectations.cpp', |
17 ], | 16 ], |
18 'dependencies': [ | 17 'dependencies': [ |
19 'skia_lib.gyp:skia_lib', | 18 'skia_lib.gyp:skia_lib', |
20 'jsoncpp.gyp:jsoncpp', | 19 'jsoncpp.gyp:jsoncpp', |
21 ], | 20 ], |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 ], | 87 ], |
89 }, | 88 }, |
90 ], | 89 ], |
91 } | 90 } |
92 | 91 |
93 # Local Variables: | 92 # Local Variables: |
94 # tab-width:2 | 93 # tab-width:2 |
95 # indent-tabs-mode:nil | 94 # indent-tabs-mode:nil |
96 # End: | 95 # End: |
97 # vim: set expandtab tabstop=2 shiftwidth=2: | 96 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |