summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authordpranke <dpranke@chromium.org>2015-07-27 17:55:23 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-28 00:56:41 +0000
commit7ba63a918a644773af77dc657792d6440e8afbc1 (patch)
tree8b21ae1630f8504c2c0fcbb7b65a961c68973c49 /ppapi
parent7a0d32250eaedd102f90d8c7932c7f8be2355d16 (diff)
downloadchromium_src-7ba63a918a644773af77dc657792d6440e8afbc1.zip
chromium_src-7ba63a918a644773af77dc657792d6440e8afbc1.tar.gz
chromium_src-7ba63a918a644773af77dc657792d6440e8afbc1.tar.bz2
Revert "Add precompiled headers to GN build for large targets."
This reverts commit 8f3218985dde74063ccc362da47803be163f3165. It looks like this may have broken incremental builds on Win. TBR=brettw@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1256223003 Cr-Commit-Position: refs/heads/master@{#340620}
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/BUILD.gn1
-rw-r--r--ppapi/cpp/BUILD.gn1
-rw-r--r--ppapi/proxy/BUILD.gn5
-rw-r--r--ppapi/shared_impl/BUILD.gn1
-rw-r--r--ppapi/thunk/BUILD.gn1
5 files changed, 1 insertions, 8 deletions
diff --git a/ppapi/BUILD.gn b/ppapi/BUILD.gn
index d14ad70..ae8b8b7 100644
--- a/ppapi/BUILD.gn
+++ b/ppapi/BUILD.gn
@@ -34,7 +34,6 @@ shared_library("ppapi_tests") {
sources = ppapi_sources.test_common_source_files +
ppapi_sources.test_trusted_source_files
- configs += [ "//build/config:precompiled_headers" ]
defines = [ "GL_GLEXT_PROTOTYPES" ]
include_dirs = [ "lib/gl/include" ]
diff --git a/ppapi/cpp/BUILD.gn b/ppapi/cpp/BUILD.gn
index 63b3f60..2e121be 100644
--- a/ppapi/cpp/BUILD.gn
+++ b/ppapi/cpp/BUILD.gn
@@ -23,5 +23,4 @@ source_set("cpp") {
# themselves.
source_set("objects") {
sources = rebase_path(ppapi_sources.cpp_source_files, ".", "..")
- configs += [ "//build/config:precompiled_headers" ]
}
diff --git a/ppapi/proxy/BUILD.gn b/ppapi/proxy/BUILD.gn
index bd378d5..62a5370 100644
--- a/ppapi/proxy/BUILD.gn
+++ b/ppapi/proxy/BUILD.gn
@@ -265,10 +265,7 @@ component("proxy") {
]
}
- configs += [
- ":proxy_implementation",
- "//build/config:precompiled_headers",
- ]
+ configs += [ ":proxy_implementation" ]
deps = [
"//base",
diff --git a/ppapi/shared_impl/BUILD.gn b/ppapi/shared_impl/BUILD.gn
index 25ad904..9d205ec 100644
--- a/ppapi/shared_impl/BUILD.gn
+++ b/ppapi/shared_impl/BUILD.gn
@@ -151,7 +151,6 @@ component("shared_impl") {
]
}
- configs += [ "//build/config:precompiled_headers" ]
defines = [
"PPAPI_SHARED_IMPLEMENTATION",
diff --git a/ppapi/thunk/BUILD.gn b/ppapi/thunk/BUILD.gn
index b4adef9..c62534f 100644
--- a/ppapi/thunk/BUILD.gn
+++ b/ppapi/thunk/BUILD.gn
@@ -187,7 +187,6 @@ source_set("thunk") {
]
}
- configs += [ "//build/config:precompiled_headers" ]
defines = [
# This target goes in the same library as shared_impl (in GYP they are the
# same).