| OLD | NEW |
| 1 # GYP file to build unit tests. | 1 # GYP file to build unit tests. |
| 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': 'tests', | 8 'target_name': 'tests', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'include_dirs' : [ | 10 'include_dirs' : [ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 '../tests/WritePixelsTest.cpp', | 115 '../tests/WritePixelsTest.cpp', |
| 116 '../tests/Writer32Test.cpp', | 116 '../tests/Writer32Test.cpp', |
| 117 '../tests/XfermodeTest.cpp', | 117 '../tests/XfermodeTest.cpp', |
| 118 | 118 |
| 119 # Needed for PipeTest. | 119 # Needed for PipeTest. |
| 120 '../src/pipe/utils/SamplePipeControllers.cpp', | 120 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 121 ], | 121 ], |
| 122 'dependencies': [ | 122 'dependencies': [ |
| 123 'skia_base_libs.gyp:skia_base_libs', | 123 'skia_base_libs.gyp:skia_base_libs', |
| 124 'effects.gyp:effects', | 124 'effects.gyp:effects', |
| 125 'flags.gyp:flags', |
| 125 'experimental.gyp:experimental', | 126 'experimental.gyp:experimental', |
| 126 'images.gyp:images', | 127 'images.gyp:images', |
| 127 'pdf.gyp:pdf', | 128 'pdf.gyp:pdf', |
| 128 'tools.gyp:picture_utils', | 129 'tools.gyp:picture_utils', |
| 129 'utils.gyp:utils', | 130 'utils.gyp:utils', |
| 130 'sfnt.gyp:sfnt', | 131 'sfnt.gyp:sfnt', |
| 131 ], | 132 ], |
| 132 'conditions': [ | 133 'conditions': [ |
| 133 [ 'skia_gpu == 1', { | 134 [ 'skia_gpu == 1', { |
| 134 'include_dirs': [ | 135 'include_dirs': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 147 ], | 148 ], |
| 148 }, | 149 }, |
| 149 ], | 150 ], |
| 150 } | 151 } |
| 151 | 152 |
| 152 # Local Variables: | 153 # Local Variables: |
| 153 # tab-width:2 | 154 # tab-width:2 |
| 154 # indent-tabs-mode:nil | 155 # indent-tabs-mode:nil |
| 155 # End: | 156 # End: |
| 156 # vim: set expandtab tabstop=2 shiftwidth=2: | 157 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |