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

Unified Diff: content/public/common/BUILD.gn

Issue 1148173002: Remove dependency on resources from installer_util (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ix non-Windows gn check Created 5 years, 7 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
« chrome/common/BUILD.gn ('K') | « chrome/installer/util/user_experiment.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/BUILD.gn
diff --git a/content/public/common/BUILD.gn b/content/public/common/BUILD.gn
index 51772e359125dad5a37059c6065fb90df6e6a48f..19b0c80e9e5444f93c250b2e93124f9c60d84480 100644
--- a/content/public/common/BUILD.gn
+++ b/content/public/common/BUILD.gn
@@ -19,6 +19,14 @@ group("common") {
}
}
+# This target allows other targets to depend on result_codes.h which is a
+# header-only dependency, without bringing in all of content.
+source_set("result_codes") {
+ sources = [
+ "result_codes.h",
+ ]
+}
+
source_set("common_sources") {
visibility = [ "//content/*" ]
« chrome/common/BUILD.gn ('K') | « chrome/installer/util/user_experiment.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698