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

Unified Diff: content/test/BUILD.gn

Issue 1250273002: Add precompiled headers to GN build for large targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mergey-wergey 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 | « content/shell/BUILD.gn ('k') | extensions/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/BUILD.gn
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn
index 0dbffbdb0022a76a505f145e135c6838fb53a41f..23c600cc56b9d1b066d4e1c55bdf940211b591e4 100644
--- a/content/test/BUILD.gn
+++ b/content/test/BUILD.gn
@@ -22,6 +22,7 @@ content_tests_gypi_values =
# GYP version //content/content_tests.gypi:test_support_content
source_set("test_support") {
testonly = true
+ configs += [ "//build/config:precompiled_headers" ]
public_deps = [
"//content/public/app:both",
"//content/public/browser",
@@ -268,7 +269,10 @@ if (!is_mac) {
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+ configs += [
+ "//build/config:precompiled_headers",
+ "//build/config/compiler:no_size_t_to_int_warning",
+ ]
deps = [
":browsertest_support",
@@ -427,6 +431,9 @@ test("content_unittests") {
sources = rebase_path(content_tests_gypi_values.content_unittests_sources,
".",
"//content")
+
+ configs += [ "//build/config:precompiled_headers" ]
+
deps = [
":test_support",
"//base/allocator",
« no previous file with comments | « content/shell/BUILD.gn ('k') | extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698