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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 '../tests/TLSTest.cpp', | 121 '../tests/TLSTest.cpp', |
122 '../tests/TSetTest.cpp', | 122 '../tests/TSetTest.cpp', |
123 '../tests/ToUnicode.cpp', | 123 '../tests/ToUnicode.cpp', |
124 '../tests/UnicodeTest.cpp', | 124 '../tests/UnicodeTest.cpp', |
125 '../tests/UtilsTest.cpp', | 125 '../tests/UtilsTest.cpp', |
126 '../tests/WArrayTest.cpp', | 126 '../tests/WArrayTest.cpp', |
127 '../tests/WritePixelsTest.cpp', | 127 '../tests/WritePixelsTest.cpp', |
128 '../tests/Writer32Test.cpp', | 128 '../tests/Writer32Test.cpp', |
129 '../tests/XfermodeTest.cpp', | 129 '../tests/XfermodeTest.cpp', |
130 | 130 |
| 131 '../tools/ToolUtils.cpp', |
| 132 |
131 # Needed for PipeTest. | 133 # Needed for PipeTest. |
132 '../src/pipe/utils/SamplePipeControllers.cpp', | 134 '../src/pipe/utils/SamplePipeControllers.cpp', |
133 ], | 135 ], |
134 'dependencies': [ | 136 'dependencies': [ |
135 'skia_lib.gyp:skia_lib', | 137 'skia_lib.gyp:skia_lib', |
136 'flags.gyp:flags', | 138 'flags.gyp:flags', |
137 'experimental.gyp:experimental', | 139 'experimental.gyp:experimental', |
138 'pdf.gyp:pdf', | 140 'pdf.gyp:pdf', |
139 'tools.gyp:picture_utils', | 141 'tools.gyp:picture_utils', |
140 ], | 142 ], |
(...skipping 16 matching lines...) Expand all Loading... |
157 ], | 159 ], |
158 }, | 160 }, |
159 ], | 161 ], |
160 } | 162 } |
161 | 163 |
162 # Local Variables: | 164 # Local Variables: |
163 # tab-width:2 | 165 # tab-width:2 |
164 # indent-tabs-mode:nil | 166 # indent-tabs-mode:nil |
165 # End: | 167 # End: |
166 # vim: set expandtab tabstop=2 shiftwidth=2: | 168 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |