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

Unified Diff: ios/clean/chrome/browser/ui/dialogs/BUILD.gn

Issue 2929563002: [iOS Clean] Added dialogs UI support.
Patch Set: rebase & Mark's comments Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ios/clean/chrome/browser/ui/dialogs/BUILD.gn
diff --git a/ios/clean/chrome/browser/ui/dialogs/BUILD.gn b/ios/clean/chrome/browser/ui/dialogs/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..599d2b2b14288bb75fbf489fea6422adcfa07e8e
--- /dev/null
+++ b/ios/clean/chrome/browser/ui/dialogs/BUILD.gn
@@ -0,0 +1,48 @@
+# 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("dialogs_internal") {
+ sources = [
+ "dialog_coordinator+subclassing.h",
+ "dialog_coordinator.h",
+ "dialog_coordinator.mm",
+ "dialog_mediator+subclassing.h",
+ "dialog_mediator.h",
+ "dialog_mediator.mm",
+ ]
+
+ configs += [ "//build/config/compiler:enable_arc" ]
+
+ deps = [
+ ":dialogs_ui",
+ "//base",
+ "//ios/clean/chrome/browser/ui/commands",
+ "//ios/clean/chrome/browser/ui/overlay_service",
+ "//ios/shared/chrome/browser/ui/browser_list",
+ "//ios/shared/chrome/browser/ui/commands",
+ "//ios/shared/chrome/browser/ui/coordinators",
+ ]
+}
+
+source_set("dialogs_ui") {
+ sources = [
+ "dialog_button_configuration.h",
+ "dialog_button_configuration.mm",
+ "dialog_consumer.h",
+ "dialog_text_field_configuration.h",
+ "dialog_text_field_configuration.mm",
+ "dialog_view_controller.h",
+ "dialog_view_controller.mm",
+ ]
+
+ configs += [ "//build/config/compiler:enable_arc" ]
+
+ deps = [
+ "//base",
+ "//components/strings",
+ "//ios/chrome/app/strings",
+ "//ios/clean/chrome/browser/ui/commands",
+ "//ui/base",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698