blob: ba5bab4ec6949af321a8b43e435e90e2d39fc1a1 [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("alert_coordinator") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"action_sheet_coordinator.h",
"action_sheet_coordinator.mm",
"alert_coordinator.h",
"alert_coordinator.mm",
"input_alert_coordinator.h",
"input_alert_coordinator.mm",
]
deps = [
"//base",
"//ios/chrome/browser",
"//ui/base",
"//ui/strings",
]
}
source_set("unit_tests") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
sources = [
"action_sheet_coordinator_unittest.mm",
"alert_coordinator_unittest.mm",
"input_alert_coordinator_unittest.mm",
]
deps = [
":alert_coordinator",
"//base",
"//testing/gtest",
"//third_party/ocmock",
"//ui/base",
"//ui/strings",
]
}