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

Unified Diff: components/task_scheduler_util/common/BUILD.gn

Issue 2565013002: Split browser-specific and generic code in components/task_scheduler_util/. (Closed)
Patch Set: self-review Created 4 years 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: components/task_scheduler_util/common/BUILD.gn
diff --git a/components/task_scheduler_util/initialization/BUILD.gn b/components/task_scheduler_util/common/BUILD.gn
similarity index 71%
rename from components/task_scheduler_util/initialization/BUILD.gn
rename to components/task_scheduler_util/common/BUILD.gn
index 213326bd9971e542f3c4bc0ada1d05f3f8d4d3a3..d0e0566f16c8857b815139686e7a85adf6e20b8f 100644
--- a/components/task_scheduler_util/initialization/BUILD.gn
+++ b/components/task_scheduler_util/common/BUILD.gn
@@ -2,10 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-static_library("initialization") {
+static_library("common") {
robliao 2016/12/14 20:46:48 Is the variations->common directory change necessa
fdoray 2016/12/14 21:03:12 Makes it clear that this will be used in browser a
sources = [
- "browser_util.cc",
- "browser_util.h",
+ "variations_util.cc",
+ "variations_util.h",
]
deps = [
@@ -16,10 +16,10 @@ static_library("initialization") {
source_set("unit_tests") {
testonly = true
sources = [
- "browser_util_unittest.cc",
+ "variations_util_unittest.cc",
]
deps = [
- ":initialization",
+ ":common",
"//base",
"//testing/gtest",
]

Powered by Google App Engine
This is Rietveld 408576698