| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'gfx_unittests', | 11 'target_name': 'gfx_unittests', |
| 12 'type': 'executable', | 12 'type': 'executable', |
| 13 'msvs_guid': 'C8BD2821-EAE5-4AC6-A0E4-F82CAC2956CC', | 13 'msvs_guid': 'C8BD2821-EAE5-4AC6-A0E4-F82CAC2956CC', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'gfx', | 15 'gfx', |
| 16 '../skia/skia.gyp:skia', | 16 '../skia/skia.gyp:skia', |
| 17 '../testing/gtest.gyp:gtest', | 17 '../testing/gtest.gyp:gtest', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'blit_unittest.cc', |
| 20 'codec/jpeg_codec_unittest.cc', | 21 'codec/jpeg_codec_unittest.cc', |
| 21 'codec/png_codec_unittest.cc', | 22 'codec/png_codec_unittest.cc', |
| 22 'color_utils_unittest.cc', | 23 'color_utils_unittest.cc', |
| 23 'font_unittest.cc', | 24 'font_unittest.cc', |
| 24 'insets_unittest.cc', | 25 'insets_unittest.cc', |
| 25 'rect_unittest.cc', | 26 'rect_unittest.cc', |
| 26 'run_all_unittests.cc', | 27 'run_all_unittests.cc', |
| 27 'skbitmap_operations_unittest.cc', | 28 'skbitmap_operations_unittest.cc', |
| 28 'test_suite.h', | 29 'test_suite.h', |
| 29 ], | 30 ], |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ], | 156 ], |
| 156 }, | 157 }, |
| 157 ], | 158 ], |
| 158 } | 159 } |
| 159 | 160 |
| 160 # Local Variables: | 161 # Local Variables: |
| 161 # tab-width:2 | 162 # tab-width:2 |
| 162 # indent-tabs-mode:nil | 163 # indent-tabs-mode:nil |
| 163 # End: | 164 # End: |
| 164 # vim: set expandtab tabstop=2 shiftwidth=2: | 165 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |