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

Unified Diff: components/sync_sessions/BUILD.gn

Issue 1387253004: [Sync] Creating sync_sessions component, moving revisit logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing test_support target. Created 5 years, 2 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/sync_sessions.gypi ('k') | components/sync_sessions/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_sessions/BUILD.gn
diff --git a/components/sync_sessions/BUILD.gn b/components/sync_sessions/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..33db9cfd07c8a3b515b907d28c578d77815810b1
--- /dev/null
+++ b/components/sync_sessions/BUILD.gn
@@ -0,0 +1,40 @@
+# 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.
+
+# GYP version: components/sync_sessions.gypi:sync_sessions
+source_set("sync_sessions") {
+ sources = [
+ "revisit/current_tab_matcher.cc",
+ "revisit/current_tab_matcher.h",
+ "revisit/offset_tab_matcher.cc",
+ "revisit/offset_tab_matcher.h",
+ "revisit/page_equality.h",
+ "revisit/page_visit_observer.h",
+ "revisit/sessions_page_revisit_observer.cc",
+ "revisit/sessions_page_revisit_observer.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/sessions",
+ "//components/sync_driver",
+ "//sync",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "revisit/current_tab_matcher_unittest.cc",
+ "revisit/offset_tab_matcher_unittest.cc",
+ "revisit/sessions_page_revisit_observer_unittest.cc",
+ ]
+
+ deps = [
+ ":sync_sessions",
+ "//base/test:test_support",
+ "//testing/gtest",
+ "//sync",
+ ]
+}
« no previous file with comments | « components/sync_sessions.gypi ('k') | components/sync_sessions/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698