| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'blit_unittest.cc', | 36 'blit_unittest.cc', |
| 37 'break_list_unittest.cc', | 37 'break_list_unittest.cc', |
| 38 'canvas_unittest.cc', | 38 'canvas_unittest.cc', |
| 39 'codec/jpeg_codec_unittest.cc', | 39 'codec/jpeg_codec_unittest.cc', |
| 40 'codec/png_codec_unittest.cc', | 40 'codec/png_codec_unittest.cc', |
| 41 'color_analysis_unittest.cc', | 41 'color_analysis_unittest.cc', |
| 42 'color_utils_unittest.cc', | 42 'color_utils_unittest.cc', |
| 43 'display_change_notifier_unittest.cc', | 43 'display_change_notifier_unittest.cc', |
| 44 'display_unittest.cc', | 44 'display_unittest.cc', |
| 45 'font_list_unittest.cc', | 45 'font_list_unittest.cc', |
| 46 'font_render_params_linux_unittest.cc', | |
| 47 'geometry/box_unittest.cc', | 46 'geometry/box_unittest.cc', |
| 48 'geometry/cubic_bezier_unittest.cc', | 47 'geometry/cubic_bezier_unittest.cc', |
| 49 'geometry/insets_unittest.cc', | 48 'geometry/insets_unittest.cc', |
| 50 'geometry/matrix3_unittest.cc', | 49 'geometry/matrix3_unittest.cc', |
| 51 'geometry/point_unittest.cc', | 50 'geometry/point_unittest.cc', |
| 52 'geometry/point3_unittest.cc', | 51 'geometry/point3_unittest.cc', |
| 53 'geometry/quad_unittest.cc', | 52 'geometry/quad_unittest.cc', |
| 54 'geometry/r_tree_unittest.cc', | 53 'geometry/r_tree_unittest.cc', |
| 55 'geometry/rect_unittest.cc', | 54 'geometry/rect_unittest.cc', |
| 56 'geometry/safe_integer_conversions_unittest.cc', | 55 'geometry/safe_integer_conversions_unittest.cc', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'transform_unittest.cc', | 96 'transform_unittest.cc', |
| 98 'interpolated_transform_unittest.cc', | 97 'interpolated_transform_unittest.cc', |
| 99 ], | 98 ], |
| 100 }], | 99 }], |
| 101 ['use_pango == 1', { | 100 ['use_pango == 1', { |
| 102 'dependencies': [ | 101 'dependencies': [ |
| 103 '../../build/linux/system.gyp:fontconfig', | 102 '../../build/linux/system.gyp:fontconfig', |
| 104 '../../build/linux/system.gyp:pangocairo', | 103 '../../build/linux/system.gyp:pangocairo', |
| 105 ], | 104 ], |
| 106 'sources': [ | 105 'sources': [ |
| 106 'font_render_params_linux_unittest.cc', |
| 107 'platform_font_pango_unittest.cc', | 107 'platform_font_pango_unittest.cc', |
| 108 ], | 108 ], |
| 109 'conditions': [ | 109 'conditions': [ |
| 110 ['use_allocator!="none"', { | 110 ['use_allocator!="none"', { |
| 111 'dependencies': [ | 111 'dependencies': [ |
| 112 '../../base/allocator/allocator.gyp:allocator', | 112 '../../base/allocator/allocator.gyp:allocator', |
| 113 ], | 113 ], |
| 114 }], | 114 }], |
| 115 ], | 115 ], |
| 116 }], | 116 }], |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 ], | 158 ], |
| 159 'variables': { | 159 'variables': { |
| 160 'test_suite_name': 'gfx_unittests', | 160 'test_suite_name': 'gfx_unittests', |
| 161 }, | 161 }, |
| 162 'includes': [ '../../build/apk_test.gypi' ], | 162 'includes': [ '../../build/apk_test.gypi' ], |
| 163 }, | 163 }, |
| 164 ], | 164 ], |
| 165 }], | 165 }], |
| 166 ], | 166 ], |
| 167 } | 167 } |
| OLD | NEW |