diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-27 13:02:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-27 13:02:24 -0700 |
commit | 1ae572e7e35b52ce4897d1715c005a1b0f79526a (patch) | |
tree | 22eda1bab855a081f0a19db2bfb514da22f1faa5 | |
parent | 303e525325904cd9b6a847f48951510e7dd8a45e (diff) | |
download | pdfium-1ae572e7e35b52ce4897d1715c005a1b0f79526a.tar.xz |
Allow overriding GN build flags
In order to enable XFA from GN builds we need to be able to override
pdf_enable_xfa. To do this a build_overrides/pdfium.gni file needs to be created
in Chrome. To use that, we have to create a build_overrides/pdfium.gni file
in PDFium that just uses the default values.
BUG=chromium:62400
Review-Url: https://codereview.chromium.org/1923333002
-rw-r--r-- | BUILD.gn | 2 | ||||
-rw-r--r-- | build_overrides/pdfium.gni (renamed from pdfium.gni) | 2 | ||||
-rw-r--r-- | samples/BUILD.gn | 2 | ||||
-rw-r--r-- | testing/libfuzzer/BUILD.gn | 2 | ||||
-rw-r--r-- | third_party/BUILD.gn | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -3,8 +3,8 @@ # found in the LICENSE file. import("//build_overrides/v8.gni") +import("//build_overrides/pdfium.gni") import("//testing/test.gni") -import("pdfium.gni") config("pdfium_config") { cflags = [] diff --git a/pdfium.gni b/build_overrides/pdfium.gni index b85ac74d0f..d032aa12a4 100644 --- a/pdfium.gni +++ b/build_overrides/pdfium.gni @@ -1,4 +1,4 @@ -# Copyright 2015 PDFium Authors. All rights reserved. +# 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. diff --git a/samples/BUILD.gn b/samples/BUILD.gn index 83c510d7c8..9e18289e46 100644 --- a/samples/BUILD.gn +++ b/samples/BUILD.gn @@ -4,7 +4,7 @@ import("//build/config/sanitizers/sanitizers.gni") import("//build_overrides/v8.gni") -import("../pdfium.gni") +import("//build_overrides/pdfium.gni") group("samples") { testonly = true diff --git a/testing/libfuzzer/BUILD.gn b/testing/libfuzzer/BUILD.gn index 0ee8b29e38..bd6215ba1a 100644 --- a/testing/libfuzzer/BUILD.gn +++ b/testing/libfuzzer/BUILD.gn @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -import("../../pdfium.gni") +import("//build_overrides/pdfium.gni") config("libfuzzer_config") { defines = [ diff --git a/third_party/BUILD.gn b/third_party/BUILD.gn index e0c9bf116e..eb1e53b3bb 100644 --- a/third_party/BUILD.gn +++ b/third_party/BUILD.gn @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -import("../pdfium.gni") +import("//build_overrides/pdfium.gni") group("third_party") { deps = [ |