diff options
author | Bruce Dawson <brucedawson@google.com> | 2015-06-01 14:48:49 -0700 |
---|---|---|
committer | Bruce Dawson <brucedawson@google.com> | 2015-06-01 14:48:49 -0700 |
commit | c2dfffbcf46e32d252c22c44233a16dee13052ab (patch) | |
tree | ba7fd26da1a2100f14f4304aeb57f50d4e4602c0 | |
parent | 19922bbc0d62b81e0fdd6a01da39e9b875c53c68 (diff) | |
download | pdfium-c2dfffbcf46e32d252c22c44233a16dee13052ab.tar.xz |
Add missing comma to third_party.gyp, integrated to XFA
Original change by bungeman@chromium.org
A reference to nonstd_unique_ptr.h was added with
https://codereview.chromium.org/1091283002 but a comma is missing
after it. This causes this string to be concatenated with the next,
leading to broken sources. This went unnoticed by the build due to
the fact that the affected sources are both headers, but they should
be properly separated.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1156663006
Review URL: https://codereview.chromium.org/1156483006
-rw-r--r-- | third_party/third_party.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/third_party.gyp b/third_party/third_party.gyp index c106f1e314..b6978658dd 100644 --- a/third_party/third_party.gyp +++ b/third_party/third_party.gyp @@ -66,7 +66,7 @@ 'sources': [ 'base/logging.h', 'base/macros.h', - 'base/nonstd_unique_ptr.h' + 'base/nonstd_unique_ptr.h', 'base/template_util.h', 'base/numerics/safe_conversions.h', 'base/numerics/safe_conversions_impl.h', |