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

Unified Diff: components/sync_driver/BUILD.gn

Issue 1275003003: Componentize tab_node_pool to sync_driver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated dependencies Created 5 years, 4 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_driver.gypi ('k') | components/sync_driver/tab_node_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/BUILD.gn
diff --git a/components/sync_driver/BUILD.gn b/components/sync_driver/BUILD.gn
index bedf6c9ae5dbb4e4166fa95d0fbba819473c513a..35705efa0fb635ba8da6c4605f8ad8df7138f5e5 100644
--- a/components/sync_driver/BUILD.gn
+++ b/components/sync_driver/BUILD.gn
@@ -73,6 +73,8 @@ static_library("sync_driver") {
"sync_service_observer.h",
"system_encryptor.cc",
"system_encryptor.h",
+ "tab_node_pool.cc",
+ "tab_node_pool.h",
"ui_data_type_controller.cc",
"ui_data_type_controller.h",
"user_selectable_sync_type.h",
@@ -93,6 +95,19 @@ static_library("sync_driver") {
}
}
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "tab_node_pool_unittest.cc",
sdefresne 2015/08/12 07:11:13 Can you also add the unit tests that are listed in
Abhishek 2015/08/12 07:49:05 I'm okay with anything. But IMO its better to rais
+ ]
+
+ deps = [
+ ":sync_driver",
+ "//sync",
+ "//testing/gtest",
+ ]
+}
+
static_library("test_support") {
testonly = true
sources = [
« no previous file with comments | « components/sync_driver.gypi ('k') | components/sync_driver/tab_node_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698