Index: content/app/BUILD.gn |
diff --git a/content/app/BUILD.gn b/content/app/BUILD.gn |
index 8da75d4ff61ccc29a02cf9cf3952634b111c62a9..f6c72b9f86427fa64c53669074d43f026b48682b 100644 |
--- a/content/app/BUILD.gn |
+++ b/content/app/BUILD.gn |
@@ -2,7 +2,8 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-import("//build/config/chrome_build.gni") |
+# TODO(GYP) enable chrome_multiple_dll support |
+is_chrome_multiple_dll = false |
content_app_sources = [ |
"android/app_jni_registrar.cc", |
@@ -70,7 +71,7 @@ |
"//content:content_implementation", |
] |
-if (!is_multi_dll_chrome) { |
+if (!is_chrome_multiple_dll) { |
content_app_deps += [ "//content/gpu:gpu_sources" ] |
} |
@@ -85,7 +86,7 @@ |
deps = content_app_deps |
} |
-if (is_multi_dll_chrome) { |
+if (is_chrome_multiple_dll) { |
# It doesn't make sense to do the browser/child dll split in component mode. |
assert(!is_component_build) |
@@ -96,7 +97,7 @@ |
configs += content_app_extra_configs |
deps = content_app_deps |
- defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] |
+ defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ] |
} |
source_set("child") { |
@@ -106,6 +107,6 @@ |
configs += content_app_extra_configs |
deps = content_app_deps |
- defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
+ defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] |
} |
} |