OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'type': '<(gtest_target_type)', | 6 'type': '<(gtest_target_type)', |
7 'dependencies': [ | 7 'dependencies': [ |
8 '../../base/base.gyp:base', | 8 '../../base/base.gyp:base', |
9 '../../base/base.gyp:test_support_base', | 9 '../../base/base.gyp:test_support_base', |
10 '../../net/net.gyp:net', | 10 '../../net/net.gyp:net', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'ime/input_method_base_unittest.cc', | 63 'ime/input_method_base_unittest.cc', |
64 'ime/input_method_chromeos_unittest.cc', | 64 'ime/input_method_chromeos_unittest.cc', |
65 'ime/remote_input_method_win_unittest.cc', | 65 'ime/remote_input_method_win_unittest.cc', |
66 'ime/win/imm32_manager_unittest.cc', | 66 'ime/win/imm32_manager_unittest.cc', |
67 'ime/win/tsf_input_scope_unittest.cc', | 67 'ime/win/tsf_input_scope_unittest.cc', |
68 'models/list_model_unittest.cc', | 68 'models/list_model_unittest.cc', |
69 'models/list_selection_model_unittest.cc', | 69 'models/list_selection_model_unittest.cc', |
70 'models/tree_node_model_unittest.cc', | 70 'models/tree_node_model_unittest.cc', |
71 'test/data/resource.h', | 71 'test/data/resource.h', |
72 'text/bytes_formatting_unittest.cc', | 72 'text/bytes_formatting_unittest.cc', |
| 73 'touch/touch_editing_controller_unittest.cc', |
73 'view_prop_unittest.cc', | 74 'view_prop_unittest.cc', |
74 'webui/web_ui_util_unittest.cc', | 75 'webui/web_ui_util_unittest.cc', |
75 'x/selection_requestor_unittest.cc', | 76 'x/selection_requestor_unittest.cc', |
76 ], | 77 ], |
77 'include_dirs': [ | 78 'include_dirs': [ |
78 '../..', | 79 '../..', |
79 ], | 80 ], |
80 'conditions': [ | 81 'conditions': [ |
81 ['OS!="ios"', { | 82 ['OS!="ios"', { |
82 'sources' : [ '<@(_all_sources)' ], | 83 'sources' : [ '<@(_all_sources)' ], |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 '-loleacc.lib', | 126 '-loleacc.lib', |
126 ], | 127 ], |
127 }, | 128 }, |
128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
129 'msvs_disabled_warnings': [ 4267, ], | 130 'msvs_disabled_warnings': [ 4267, ], |
130 }], | 131 }], |
131 ['OS == "android"', { | 132 ['OS == "android"', { |
132 'dependencies': [ | 133 'dependencies': [ |
133 '../../testing/android/native_test.gyp:native_test_native_code', | 134 '../../testing/android/native_test.gyp:native_test_native_code', |
134 ], | 135 ], |
| 136 'sources!': [ |
| 137 'touch/touch_editing_controller_unittest.cc', |
| 138 ], |
135 }], | 139 }], |
136 ['use_pango == 1', { | 140 ['use_pango == 1', { |
137 'dependencies': [ | 141 'dependencies': [ |
138 '../../build/linux/system.gyp:pangocairo', | 142 '../../build/linux/system.gyp:pangocairo', |
139 ], | 143 ], |
140 'conditions': [ | 144 'conditions': [ |
141 ['use_allocator!="none"', { | 145 ['use_allocator!="none"', { |
142 'dependencies': [ | 146 'dependencies': [ |
143 '../../base/allocator/allocator.gyp:allocator', | 147 '../../base/allocator/allocator.gyp:allocator', |
144 ], | 148 ], |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 'target_conditions': [ | 221 'target_conditions': [ |
218 ['OS == "ios"', { | 222 ['OS == "ios"', { |
219 'sources/': [ | 223 'sources/': [ |
220 # Pull in specific Mac files for iOS (which have been filtered out | 224 # Pull in specific Mac files for iOS (which have been filtered out |
221 # by file name rules). | 225 # by file name rules). |
222 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'], | 226 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'], |
223 ], | 227 ], |
224 }], | 228 }], |
225 ], | 229 ], |
226 } | 230 } |
OLD | NEW |