| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'platform_font_pango_unittest.cc', | 104 'platform_font_pango_unittest.cc', |
| 105 ], | 105 ], |
| 106 'conditions': [ | 106 'conditions': [ |
| 107 ['use_allocator!="none"', { | 107 ['use_allocator!="none"', { |
| 108 'dependencies': [ | 108 'dependencies': [ |
| 109 '../../base/allocator/allocator.gyp:allocator', | 109 '../../base/allocator/allocator.gyp:allocator', |
| 110 ], | 110 ], |
| 111 }], | 111 }], |
| 112 ], | 112 ], |
| 113 }], | 113 }], |
| 114 ['use_ozone==1 and use_pango==0', { | |
| 115 'sources!': [ | |
| 116 'canvas_unittest.cc', | |
| 117 'font_list_unittest.cc', | |
| 118 'font_unittest.cc', | |
| 119 'render_text_unittest.cc', | |
| 120 'text_elider_unittest.cc', | |
| 121 ], | |
| 122 }], | |
| 123 ['OS == "android"', { | 114 ['OS == "android"', { |
| 124 'dependencies': [ | 115 'dependencies': [ |
| 125 '../../testing/android/native_test.gyp:native_test_native_code', | 116 '../../testing/android/native_test.gyp:native_test_native_code', |
| 126 ], | 117 ], |
| 127 # Do not run display_change_notifier_unittest.cc on Android because it | 118 # Do not run display_change_notifier_unittest.cc on Android because it |
| 128 # does not compile display_observer.cc | 119 # does not compile display_observer.cc |
| 129 'sources!': [ | 120 'sources!': [ |
| 130 'display_change_notifier_unittest.cc', | 121 'display_change_notifier_unittest.cc', |
| 131 ], | 122 ], |
| 132 }], | 123 }], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 ], | 174 ], |
| 184 'variables': { | 175 'variables': { |
| 185 'test_suite_name': 'gfx_unittests', | 176 'test_suite_name': 'gfx_unittests', |
| 186 }, | 177 }, |
| 187 'includes': [ '../../build/apk_test.gypi' ], | 178 'includes': [ '../../build/apk_test.gypi' ], |
| 188 }, | 179 }, |
| 189 ], | 180 ], |
| 190 }], | 181 }], |
| 191 ], | 182 ], |
| 192 } | 183 } |
| OLD | NEW |