| 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 16 matching lines...) Expand all Loading... |
| 27 ], | 27 ], |
| 28 'all_sources': [ | 28 'all_sources': [ |
| 29 '<@(_common_sources)', | 29 '<@(_common_sources)', |
| 30 'animation/animation_container_unittest.cc', | 30 'animation/animation_container_unittest.cc', |
| 31 'animation/animation_unittest.cc', | 31 'animation/animation_unittest.cc', |
| 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 'canvas_unittest.cc', |
| 37 'codec/jpeg_codec_unittest.cc', | 38 'codec/jpeg_codec_unittest.cc', |
| 38 'codec/png_codec_unittest.cc', | 39 'codec/png_codec_unittest.cc', |
| 39 'color_analysis_unittest.cc', | 40 'color_analysis_unittest.cc', |
| 40 'color_utils_unittest.cc', | 41 'color_utils_unittest.cc', |
| 41 'display_unittest.cc', | 42 'display_unittest.cc', |
| 42 'font_list_unittest.cc', | 43 'font_list_unittest.cc', |
| 43 'geometry/box_unittest.cc', | 44 'geometry/box_unittest.cc', |
| 44 'geometry/cubic_bezier_unittest.cc', | 45 'geometry/cubic_bezier_unittest.cc', |
| 45 'geometry/insets_unittest.cc', | 46 'geometry/insets_unittest.cc', |
| 46 'geometry/matrix3_unittest.cc', | 47 'geometry/matrix3_unittest.cc', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'conditions': [ | 104 'conditions': [ |
| 104 ['use_allocator!="none"', { | 105 ['use_allocator!="none"', { |
| 105 'dependencies': [ | 106 'dependencies': [ |
| 106 '../../base/allocator/allocator.gyp:allocator', | 107 '../../base/allocator/allocator.gyp:allocator', |
| 107 ], | 108 ], |
| 108 }], | 109 }], |
| 109 ], | 110 ], |
| 110 }], | 111 }], |
| 111 ['use_ozone==1 and use_pango==0', { | 112 ['use_ozone==1 and use_pango==0', { |
| 112 'sources!': [ | 113 'sources!': [ |
| 114 'canvas_unittest.cc', |
| 113 'font_list_unittest.cc', | 115 'font_list_unittest.cc', |
| 114 'font_unittest.cc', | 116 'font_unittest.cc', |
| 115 'text_elider_unittest.cc', | 117 'text_elider_unittest.cc', |
| 116 ], | 118 ], |
| 117 }], | 119 }], |
| 118 ['OS == "android"', { | 120 ['OS == "android"', { |
| 119 'dependencies': [ | 121 'dependencies': [ |
| 120 '../../testing/android/native_test.gyp:native_test_native_code', | 122 '../../testing/android/native_test.gyp:native_test_native_code', |
| 121 ], | 123 ], |
| 122 }], | 124 }], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 135 ], | 137 ], |
| 136 'variables': { | 138 'variables': { |
| 137 'test_suite_name': 'gfx_unittests', | 139 'test_suite_name': 'gfx_unittests', |
| 138 }, | 140 }, |
| 139 'includes': [ '../../build/apk_test.gypi' ], | 141 'includes': [ '../../build/apk_test.gypi' ], |
| 140 }, | 142 }, |
| 141 ], | 143 ], |
| 142 }], | 144 }], |
| 143 ], | 145 ], |
| 144 } | 146 } |
| OLD | NEW |