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

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

Issue 2800313002: [ios] RootCoordinator and view controller. (Closed)
Patch Set: Address comments. Created 3 years, 8 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/root/BUILD.gn
diff --git a/ios/clean/chrome/browser/ui/root/BUILD.gn b/ios/clean/chrome/browser/ui/root/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f2e663e6ebb164bfc94ab40e90829910bfb1088a
--- /dev/null
+++ b/ios/clean/chrome/browser/ui/root/BUILD.gn
@@ -0,0 +1,31 @@
+# Copyright 2017 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("root") {
+ sources = [
+ "root_container_coordinator.h",
+ "root_container_coordinator.mm",
+ ]
+ deps = [
+ ":root_ui",
+ "//ios/clean/chrome/browser",
+ "//ios/clean/chrome/browser/ui/commands",
+ "//ios/clean/chrome/browser/ui/tab_grid",
+ "//ios/shared/chrome/browser/ui/browser_list",
+ "//ios/shared/chrome/browser/ui/commands",
+ "//ios/shared/chrome/browser/ui/coordinators",
+ ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}
+
+source_set("root_ui") {
+ sources = [
+ "root_container_view_controller.h",
+ "root_container_view_controller.mm",
+ ]
+ deps = [
+ "//ios/clean/chrome/browser/ui/animators",
+ ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}

Powered by Google App Engine
This is Rietveld 408576698