| Index: ios/chrome/browser/ui/alert_coordinator/BUILD.gn
|
| diff --git a/ios/chrome/browser/ui/alert_coordinator/BUILD.gn b/ios/chrome/browser/ui/alert_coordinator/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b01709f35571d295a1b503e95d490c72570f8691
|
| --- /dev/null
|
| +++ b/ios/chrome/browser/ui/alert_coordinator/BUILD.gn
|
| @@ -0,0 +1,37 @@
|
| +# 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") {
|
| + 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:browser_no_public_deps",
|
| + "//ui/base",
|
| + "//ui/strings",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + 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",
|
| + ]
|
| +}
|
|
|