| 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 21 matching lines...) Expand all Loading... |
| 32 'animation/multi_animation_unittest.cc', | 32 'animation/multi_animation_unittest.cc', |
| 33 'animation/slide_animation_unittest.cc', | 33 'animation/slide_animation_unittest.cc', |
| 34 'animation/tween_unittest.cc', | 34 'animation/tween_unittest.cc', |
| 35 'blit_unittest.cc', | 35 'blit_unittest.cc', |
| 36 'break_list_unittest.cc', | 36 'break_list_unittest.cc', |
| 37 'codec/jpeg_codec_unittest.cc', | 37 'codec/jpeg_codec_unittest.cc', |
| 38 'codec/png_codec_unittest.cc', | 38 'codec/png_codec_unittest.cc', |
| 39 'color_analysis_unittest.cc', | 39 'color_analysis_unittest.cc', |
| 40 'color_utils_unittest.cc', | 40 'color_utils_unittest.cc', |
| 41 'display_unittest.cc', | 41 'display_unittest.cc', |
| 42 'font_list_unittest.cc', |
| 42 'geometry/box_unittest.cc', | 43 'geometry/box_unittest.cc', |
| 43 'geometry/cubic_bezier_unittest.cc', | 44 'geometry/cubic_bezier_unittest.cc', |
| 44 'geometry/insets_unittest.cc', | 45 'geometry/insets_unittest.cc', |
| 45 'geometry/matrix3_unittest.cc', | 46 'geometry/matrix3_unittest.cc', |
| 46 'geometry/point_unittest.cc', | 47 'geometry/point_unittest.cc', |
| 47 'geometry/point3_unittest.cc', | 48 'geometry/point3_unittest.cc', |
| 48 'geometry/quad_unittest.cc', | 49 'geometry/quad_unittest.cc', |
| 49 'geometry/r_tree_unittest.cc', | 50 'geometry/r_tree_unittest.cc', |
| 50 'geometry/rect_unittest.cc', | 51 'geometry/rect_unittest.cc', |
| 51 'geometry/safe_integer_conversions_unittest.cc', | 52 'geometry/safe_integer_conversions_unittest.cc', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'conditions': [ | 103 'conditions': [ |
| 103 ['use_allocator!="none"', { | 104 ['use_allocator!="none"', { |
| 104 'dependencies': [ | 105 'dependencies': [ |
| 105 '../../base/allocator/allocator.gyp:allocator', | 106 '../../base/allocator/allocator.gyp:allocator', |
| 106 ], | 107 ], |
| 107 }], | 108 }], |
| 108 ], | 109 ], |
| 109 }], | 110 }], |
| 110 ['use_ozone==1 and use_pango==0', { | 111 ['use_ozone==1 and use_pango==0', { |
| 111 'sources!': [ | 112 'sources!': [ |
| 113 'font_list_unittest.cc', |
| 112 'font_unittest.cc', | 114 'font_unittest.cc', |
| 113 'text_elider_unittest.cc', | 115 'text_elider_unittest.cc', |
| 114 ], | 116 ], |
| 115 }], | 117 }], |
| 116 ], | 118 ], |
| 117 } | 119 } |
| 118 ], | 120 ], |
| 119 'conditions': [ | 121 'conditions': [ |
| 120 ['OS == "android"', { | 122 ['OS == "android"', { |
| 121 'targets': [ | 123 'targets': [ |
| 122 { | 124 { |
| 123 'target_name': 'gfx_unittests_apk', | 125 'target_name': 'gfx_unittests_apk', |
| 124 'type': 'none', | 126 'type': 'none', |
| 125 'dependencies': [ | 127 'dependencies': [ |
| 126 'gfx_unittests', | 128 'gfx_unittests', |
| 127 ], | 129 ], |
| 128 'variables': { | 130 'variables': { |
| 129 'test_suite_name': 'gfx_unittests', | 131 'test_suite_name': 'gfx_unittests', |
| 130 }, | 132 }, |
| 131 'includes': [ '../../build/apk_test.gypi' ], | 133 'includes': [ '../../build/apk_test.gypi' ], |
| 132 }, | 134 }, |
| 133 ], | 135 ], |
| 134 }], | 136 }], |
| 135 ], | 137 ], |
| 136 } | 138 } |
| OLD | NEW |