| 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/', | 11 '../include/core/', |
| 12 '../src/utils/', | 12 '../src/utils/', |
| 13 ], | 13 ], |
| 14 'sources': [ | 14 'sources': [ |
| 15 '../gm/gm_expectations.h', | 15 '../gm/gm_expectations.h', |
| 16 '../gm/gm_expectations.cpp', | 16 '../gm/gm_expectations.cpp', |
| 17 ], | 17 ], |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 'skia_lib.gyp:skia_lib', | 19 'skia_lib.gyp:skia_lib', |
| 20 'core.gyp:core', | |
| 21 'images.gyp:images', | |
| 22 'jsoncpp.gyp:jsoncpp', | 20 'jsoncpp.gyp:jsoncpp', |
| 23 'utils.gyp:utils', | |
| 24 ], | 21 ], |
| 25 'direct_dependent_settings': { | 22 'direct_dependent_settings': { |
| 26 'include_dirs': [ | 23 'include_dirs': [ |
| 27 '../gm/', | 24 '../gm/', |
| 28 ], | 25 ], |
| 29 }, | 26 }, |
| 30 }, | 27 }, |
| 31 { | 28 { |
| 32 'target_name': 'gm', | 29 'target_name': 'gm', |
| 33 'type': 'executable', | 30 'type': 'executable', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 ], | 88 ], |
| 92 }, | 89 }, |
| 93 ], | 90 ], |
| 94 } | 91 } |
| 95 | 92 |
| 96 # Local Variables: | 93 # Local Variables: |
| 97 # tab-width:2 | 94 # tab-width:2 |
| 98 # indent-tabs-mode:nil | 95 # indent-tabs-mode:nil |
| 99 # End: | 96 # End: |
| 100 # vim: set expandtab tabstop=2 shiftwidth=2: | 97 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |