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

Unified Diff: build/config/BUILDCONFIG.gn

Issue 236713002: Implement net in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « base/BUILD.gn ('k') | build/config/linux/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index 2172df96898eca57fd5f09dc3ffb2bfa2823cf16..18d1140a1345dde53adc8664eddaf10f23bab65c 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -207,6 +207,7 @@ windows_sources_filters = [
"*_win.h",
"*_win_unittest.cc",
"*\bwin/*",
+ "*.rc",
]
mac_sources_filters = [
"*_mac.h",
@@ -257,6 +258,13 @@ posix_sources_filters = [
"*_posix_unittest.cc",
"*\bposix/*",
]
+chromeos_sources_filters = [
+ "*_chromeos.h",
+ "*_chromeos.cc",
+ "*_chromeos_unittest.h",
+ "*_chromeos_unittest.cc",
+ "*\bchromeos/*",
+]
# DO NOT ADD MORE PATTERNS TO THIS LIST, see set_sources_assignment_filter call
# below.
@@ -282,6 +290,9 @@ if (!is_linux) {
if (!is_android) {
sources_assignment_filter += android_sources_filters
}
+if (!is_chromeos) {
+ sources_assignment_filter += chromeos_sources_filters
+}
# Actually save this list.
#
« no previous file with comments | « base/BUILD.gn ('k') | build/config/linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698