| 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' : [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'direct_dependent_settings': { | 22 'direct_dependent_settings': { |
| 23 'include_dirs': [ | 23 'include_dirs': [ |
| 24 '../gm/', | 24 '../gm/', |
| 25 ], | 25 ], |
| 26 }, | 26 }, |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 'target_name': 'gm', | 29 'target_name': 'gm', |
| 30 'type': 'executable', | 30 'type': 'executable', |
| 31 'include_dirs' : [ | 31 'include_dirs' : [ |
| 32 '../debugger', | |
| 33 '../src/core', | 32 '../src/core', |
| 34 '../src/effects', | 33 '../src/effects', |
| 35 '../src/pipe/utils/', | 34 '../src/pipe/utils/', |
| 36 '../src/utils/', | 35 '../src/utils/', |
| 36 '../src/utils/debugger', |
| 37 ], | 37 ], |
| 38 'includes': [ | 38 'includes': [ |
| 39 'gmslides.gypi', | 39 'gmslides.gypi', |
| 40 ], | 40 ], |
| 41 'sources': [ | 41 'sources': [ |
| 42 '../gm/gm.cpp', | 42 '../gm/gm.cpp', |
| 43 '../gm/gmmain.cpp', | 43 '../gm/gmmain.cpp', |
| 44 '../gm/system_preferences_default.cpp', | 44 '../gm/system_preferences_default.cpp', |
| 45 | 45 |
| 46 '../src/pipe/utils/SamplePipeControllers.h', | 46 '../src/pipe/utils/SamplePipeControllers.h', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 ], | 88 ], |
| 89 }, | 89 }, |
| 90 ], | 90 ], |
| 91 } | 91 } |
| 92 | 92 |
| 93 # Local Variables: | 93 # Local Variables: |
| 94 # tab-width:2 | 94 # tab-width:2 |
| 95 # indent-tabs-mode:nil | 95 # indent-tabs-mode:nil |
| 96 # End: | 96 # End: |
| 97 # vim: set expandtab tabstop=2 shiftwidth=2: | 97 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |