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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 | 8 |
9 config("internal_config") { | 9 config("internal_config") { |
10 if (is_clang) { | 10 if (is_clang) { |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 "src/cpp/test/util/md5_unittest.cc", | 209 "src/cpp/test/util/md5_unittest.cc", |
210 "src/cpp/test/util/scoped_ptr_unittest.cc", | 210 "src/cpp/test/util/scoped_ptr_unittest.cc", |
211 "src/cpp/test/util/string_compare_test.cc", | 211 "src/cpp/test/util/string_compare_test.cc", |
212 "src/cpp/test/util/string_split_unittest.cc", | 212 "src/cpp/test/util/string_split_unittest.cc", |
213 "src/cpp/test/util/string_util_test.cc", | 213 "src/cpp/test/util/string_util_test.cc", |
214 "src/cpp/test/validating_storage_test.cc", | 214 "src/cpp/test/validating_storage_test.cc", |
215 "src/cpp/test/validating_util_test.cc", | 215 "src/cpp/test/validating_util_test.cc", |
216 "src/cpp/test/validation_task_test.cc", | 216 "src/cpp/test/validation_task_test.cc", |
217 ] | 217 ] |
218 | 218 |
219 if (is_ios) { | |
220 # TODO(rouslan): This tests uses ASSERT_DEATH which is not supported on | |
221 # iOS. Re-enable once http://crbug.com/595645 is fixed. | |
222 sources -= [ "src/cpp/test/address_data_test.cc" ] | |
223 } | |
224 | |
225 configs -= [ "//build/config/compiler:chromium_code" ] | 219 configs -= [ "//build/config/compiler:chromium_code" ] |
226 configs += [ | 220 configs += [ |
227 ":internal_config", | 221 ":internal_config", |
228 "//build/config/compiler:no_chromium_code", | 222 "//build/config/compiler:no_chromium_code", |
229 ] | 223 ] |
230 | 224 |
231 include_dirs = [ "src/cpp/src" ] | 225 include_dirs = [ "src/cpp/src" ] |
232 | 226 |
233 deps = [ | 227 deps = [ |
234 ":libaddressinput", | 228 ":libaddressinput", |
235 ":strings", | 229 ":strings", |
236 ":test_support", | 230 ":test_support", |
237 "//base/test:run_all_unittests", | 231 "//base/test:run_all_unittests", |
238 "//components/prefs", | 232 "//components/prefs", |
239 "//net:test_support", | 233 "//net:test_support", |
240 "//testing/gtest", | 234 "//testing/gtest", |
241 ] | 235 ] |
242 } | 236 } |
OLD | NEW |