summaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorBruce Dawson <brucedawson@google.com>2015-06-01 14:44:52 -0700
committerBruce Dawson <brucedawson@google.com>2015-06-01 14:44:52 -0700
commit8e1b60824d079546c8cc3f0e3d9fa0ea9fa980fa (patch)
treee1cb2aeef5d0eef71a301ddbd48b1e0de8f15a10 /third_party
parentcafa3fd96e850acbfa2633009b873b8ecb7aee5f (diff)
downloadpdfium-8e1b60824d079546c8cc3f0e3d9fa0ea9fa980fa.tar.xz
Add missing comma to third_party.gyp
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. R=brucedawson@chromium.org Review URL: https://codereview.chromium.org/1156663006
Diffstat (limited to 'third_party')
-rw-r--r--third_party/third_party.gyp2
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',