diff options
author | John Abd-El-Malek <jabdelmalek@google.com> | 2014-05-23 17:59:39 -0700 |
---|---|---|
committer | John Abd-El-Malek <jabdelmalek@google.com> | 2014-05-23 18:00:35 -0700 |
commit | f49e9646127e1ac82389c59ef7a2ff216deac78b (patch) | |
tree | 503140352afa6fff5d9eae0cc98818e986012c90 | |
parent | 7c83a7cdce99a03841c3b2a66dcabeed68baa354 (diff) | |
download | pdfium-f49e9646127e1ac82389c59ef7a2ff216deac78b.tar.xz |
Remove gcctest target which is not needed anymore.
Original patch by Andrey Khalyavin <halyavin@chromium.org>
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | pdfium.gyp | 28 |
2 files changed, 2 insertions, 27 deletions
@@ -8,6 +8,7 @@ # # See python fnmatch module documentation for more information. +Andrey Khalyavin <halyavin@chromium.org> John Abd-El-Malek <jam@chromium.org> Julien Tinnes <jln@chromium.org> Lucas Nihlen <luken@chromium.org> diff --git a/pdfium.gyp b/pdfium.gyp index 8cf3950a68..9f2cd3d228 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -40,7 +40,7 @@ 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror }, }], - ['clang==1', {
+ ['clang==1', { 'cflags!': [ '-Werror', ], @@ -820,30 +820,4 @@ ], }, ], - 'conditions': [ - ['OS=="mac" or OS=="linux"', { - 'targets': [ - { - 'target_name': 'gcctest', - 'type': 'executable', - 'dependencies': [ - 'fpdfsdk', - ], - 'conditions': [ - ['OS=="mac"', { - 'link_settings': { - 'libraries': [ - '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', - ], - }, - }], - ], - 'sources': [ - 'test/gcctest.cpp', - ], - } - ], - }], - ], } - |