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

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

Issue 1854323002: [Windows Sandbox] Turn on MITIGATION_EXTENSION_POINT_DISABLE for child processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DISABLE_EXTENSION_POINT for browser process - until IME support can be fixed. Created 4 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 | « content/common/sandbox_win.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 ae955f656c54eb6c4fddbdb01e76ca829f51d502..2df12fd39bbb5bfbf5d3dd81c79526ca8985a600 100644
--- a/content/public/common/BUILD.gn
+++ b/content/public/common/BUILD.gn
@@ -68,6 +68,24 @@ source_set("static_switches") {
public_configs = [ ":static_switches_defines" ]
}
+# This target allows you to use the content_features constants and statically
+# link to it, without depending on the rest of content. This is only for use
+# without content, or you will get multiply defined symbols.
+source_set("static_features") {
+ public = [
+ "content_features.h",
+ ]
+ sources = [
+ "//content/common/content_export.h",
+ "content_features.cc",
+ ]
+ public_deps = [
+ "//base",
+ ]
+
+ public_configs = [ ":static_switches_defines" ]
+}
+
source_set("common_sources") {
# External code should depend on via ":common" above.
visibility = [ "//content/*" ]
« no previous file with comments | « content/common/sandbox_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698