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

Unified Diff: chrome/browser/BUILD.gn

Issue 1212163011: Componentize chrome/browser/rlz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 5 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 | « build/config/features.gni ('k') | chrome/browser/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/BUILD.gn
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
index 2537f62f8121c85fc07d76eae181f91f9c9fbfaf..959c3dbbec9154ec6b7581272d30b734618392ab 100644
--- a/chrome/browser/BUILD.gn
+++ b/chrome/browser/BUILD.gn
@@ -685,9 +685,7 @@ source_set("browser") {
}
if (enable_rlz) {
- sources +=
- rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
- deps += [ "//rlz:rlz_lib" ]
+ deps += [ ":rlz" ]
}
# TODO(GYP)
@@ -1197,3 +1195,17 @@ source_set("test_support") {
]
}
}
+
+if (enable_rlz_support) {
+ source_set("rlz") {
+ sources =
+ rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
+ deps = [
+ "//components/google/core/browser",
+ "//components/omnibox/browser",
+ "//components/rlz",
+ "//components/search_engines",
+ "//rlz:rlz_lib",
+ ]
+ }
+}
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698