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

Unified Diff: components/undo/BUILD.gn

Issue 1090993003: Move undo files into //components/undo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@utils
Patch Set: Fix gn compilation Created 5 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
« no previous file with comments | « components/undo.gypi ('k') | components/undo/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/undo/BUILD.gn
diff --git a/components/undo/BUILD.gn b/components/undo/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c891cc0af1753e9087995a6ea3322c8d13904c32
--- /dev/null
+++ b/components/undo/BUILD.gn
@@ -0,0 +1,39 @@
+# Copyright 2015 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.
+
+static_library("undo") {
+ sources = [
+ "bookmark_renumber_observer.h",
+ "bookmark_undo_service.cc",
+ "bookmark_undo_service.h",
+ "bookmark_undo_utils.cc",
+ "bookmark_undo_utils.h",
+ "undo_manager.cc",
+ "undo_manager.h",
+ "undo_manager_observer.h",
+ "undo_operation.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/bookmarks/browser",
+ "//components/keyed_service/core",
+ "//components/strings",
+ "//ui/base",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "bookmark_undo_service_test.cc",
+ "undo_manager_test.cc",
+ ]
+
+ deps = [
+ "//components/bookmarks/test",
+ "//components/undo",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/undo.gypi ('k') | components/undo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698