From 90cbedb35b1b6a97beb01f4606db5853992ae06f Mon Sep 17 00:00:00 2001 From: sdefresne Date: Thu, 17 Mar 2016 07:40:58 -0700 Subject: [iOS] Exclude tests with dependency on ASSERT_DEATH on iOS. Those tests do not compile on iOS as ASSERT_DEATH is not defined instead they should use ASSERT_DEATH_IF_SUPPORTED. Disable them until the underlying issue if fixed in third-party library. BUG=459705 Review URL: https://codereview.chromium.org/1798413002 Cr-Commit-Position: refs/heads/master@{#381705} --- third_party/libaddressinput/BUILD.gn | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'third_party/libaddressinput') diff --git a/third_party/libaddressinput/BUILD.gn b/third_party/libaddressinput/BUILD.gn index 4132f14..b77afda 100644 --- a/third_party/libaddressinput/BUILD.gn +++ b/third_party/libaddressinput/BUILD.gn @@ -200,6 +200,12 @@ if (!is_android || use_aura) { "chromium/trie_unittest.cc", ] + if (is_ios) { + # TODO(rouslan): This tests uses ASSERT_DEATH which is not supported on + # iOS. Re-enable once http://crbug.com/595645 is fixed. + sources -= [ "src/cpp/test/address_data_test.cc" ] + } + configs -= [ "//build/config/compiler:chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ] -- cgit v1.1