Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(679)

Side by Side Diff: third_party/libaddressinput/BUILD.gn

Issue 1798413002: [iOS] Exclude tests with dependency on ASSERT_DEATH on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cld2
Patch Set: Add TODO(rouslan) Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 7
8 libaddressinput_util_files = [ 8 libaddressinput_util_files = [
9 "src/cpp/src/address_data.cc", 9 "src/cpp/src/address_data.cc",
10 "src/cpp/src/address_field.cc", 10 "src/cpp/src/address_field.cc",
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "chromium/addressinput_util_unittest.cc", 193 "chromium/addressinput_util_unittest.cc",
194 "chromium/chrome_address_validator_unittest.cc", 194 "chromium/chrome_address_validator_unittest.cc",
195 "chromium/chrome_metadata_source_unittest.cc", 195 "chromium/chrome_metadata_source_unittest.cc",
196 "chromium/chrome_storage_impl_unittest.cc", 196 "chromium/chrome_storage_impl_unittest.cc",
197 "chromium/fallback_data_store_unittest.cc", 197 "chromium/fallback_data_store_unittest.cc",
198 "chromium/storage_test_runner.cc", 198 "chromium/storage_test_runner.cc",
199 "chromium/string_compare_unittest.cc", 199 "chromium/string_compare_unittest.cc",
200 "chromium/trie_unittest.cc", 200 "chromium/trie_unittest.cc",
201 ] 201 ]
202 202
203 if (is_ios) {
204 # TODO(rouslan): This tests uses ASSERT_DEATH which is not supported on
205 # iOS. Re-enable once http://crbug.com/595645 is fixed.
206 sources -= [ "src/cpp/test/address_data_test.cc" ]
207 }
208
203 configs -= [ "//build/config/compiler:chromium_code" ] 209 configs -= [ "//build/config/compiler:chromium_code" ]
204 configs += [ "//build/config/compiler:no_chromium_code" ] 210 configs += [ "//build/config/compiler:no_chromium_code" ]
205 211
206 defines = [ "TEST_DATA_DIR=\"third_party/libaddressinput/src/testdata\"" ] 212 defines = [ "TEST_DATA_DIR=\"third_party/libaddressinput/src/testdata\"" ]
207 213
208 include_dirs = [ "src/cpp/src" ] 214 include_dirs = [ "src/cpp/src" ]
209 215
210 deps = [ 216 deps = [
211 ":libaddressinput", 217 ":libaddressinput",
212 ":strings", 218 ":strings",
213 "//base/test:run_all_unittests", 219 "//base/test:run_all_unittests",
214 "//components/prefs", 220 "//components/prefs",
215 "//net:test_support", 221 "//net:test_support",
216 "//testing/gtest", 222 "//testing/gtest",
217 ] 223 ]
218 } 224 }
219 } 225 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698