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

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

Issue 2785893003: [ios clean] Add placeholder for NTP bookmarks, chrome home and open tabs. (Closed)
Patch Set: Comment nit 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/bookmarks/BUILD.gn
diff --git a/ios/clean/chrome/browser/ui/bookmarks/BUILD.gn b/ios/clean/chrome/browser/ui/bookmarks/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..dec4e7694b9a00f08b752a038ba3ba7ea3b4ce42
--- /dev/null
+++ b/ios/clean/chrome/browser/ui/bookmarks/BUILD.gn
@@ -0,0 +1,32 @@
+# 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("bookmarks") {
+ sources = [
+ "bookmarks_coordinator.h",
+ "bookmarks_coordinator.mm",
+ ]
+
+ configs += [ "//build/config/compiler:enable_arc" ]
+
+ deps = [
+ "//ios/chrome/browser/ui",
+ "//ios/chrome/browser/ui/bookmarks",
+ "//ios/shared/chrome/browser/ui/browser_list",
+ "//ios/shared/chrome/browser/ui/coordinators",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "bookmarks_coordinator_unittest.mm",
+ ]
+
+ deps = [
+ ":bookmarks",
+ "//testing/gtest",
+ ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}

Powered by Google App Engine
This is Rietveld 408576698