summaryrefslogtreecommitdiff
path: root/build_overrides
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-04-20 10:47:47 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-20 10:47:47 -0700
commit6b2c4d7d709dbfca0a59ce6310c0941669d0f53e (patch)
treeba560415daeea4db07efce54a751320608bfc457 /build_overrides
parent685bb88433b7520946e30a1e520d37bfc2288151 (diff)
downloadpdfium-6b2c4d7d709dbfca0a59ce6310c0941669d0f53e.tar.xz
Upgrade build and clang.
The issue with //testing/multiprocess_func_list has been fixed in upstream //build. This Cl upgrades //build to ToT. In order to do so clang must also be updated. The Wno-undefined-var-template is only passed if the pinned clang revision isn't 266460, which is the currently pinned clang revision in chromium. This is there so that the bot that builds with trunk clang gets this flag, but pinned clang doesn't. We accidentally pickup the flag since our pinned clang is different from the Chrome version. So, we must always roll //build and clang together when changing deps or bad things may happen as there is an implicit dependency due to compile flags. BUG=pdfium:106 Review URL: https://codereview.chromium.org/1911483002
Diffstat (limited to 'build_overrides')
-rw-r--r--build_overrides/gtest.gni9
1 files changed, 9 insertions, 0 deletions
diff --git a/build_overrides/gtest.gni b/build_overrides/gtest.gni
new file mode 100644
index 0000000000..6089962ada
--- /dev/null
+++ b/build_overrides/gtest.gni
@@ -0,0 +1,9 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Exclude support for registering main function in multi-process tests.
+gtest_include_multiprocess = false
+
+# Exclude support for platform-specific operations across unit tests.
+gtest_include_platform_test = false