Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
michael@0 | 2 | # Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | # found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | { |
michael@0 | 6 | 'targets': [ |
michael@0 | 7 | { |
michael@0 | 8 | 'target_name': 'pdfsqueeze', |
michael@0 | 9 | 'type': 'executable', |
michael@0 | 10 | 'sources': [ |
michael@0 | 11 | '../../third_party/pdfsqueeze/pdfsqueeze.m', |
michael@0 | 12 | ], |
michael@0 | 13 | 'defines': [ |
michael@0 | 14 | # Use defines to map the full path names that will be used for |
michael@0 | 15 | # the vars into the short forms expected by pdfsqueeze.m. |
michael@0 | 16 | '______third_party_pdfsqueeze_ApplyGenericRGB_qfilter=ApplyGenericRGB_qfilter', |
michael@0 | 17 | '______third_party_pdfsqueeze_ApplyGenericRGB_qfilter_len=ApplyGenericRGB_qfilter_len', |
michael@0 | 18 | ], |
michael@0 | 19 | 'include_dirs': [ |
michael@0 | 20 | '<(INTERMEDIATE_DIR)', |
michael@0 | 21 | ], |
michael@0 | 22 | 'libraries': [ |
michael@0 | 23 | '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
michael@0 | 24 | '$(SDKROOT)/System/Library/Frameworks/Quartz.framework', |
michael@0 | 25 | ], |
michael@0 | 26 | 'actions': [ |
michael@0 | 27 | { |
michael@0 | 28 | 'action_name': 'Generate inline filter data', |
michael@0 | 29 | 'inputs': [ |
michael@0 | 30 | '../../third_party/pdfsqueeze/ApplyGenericRGB.qfilter', |
michael@0 | 31 | ], |
michael@0 | 32 | 'outputs': [ |
michael@0 | 33 | '<(INTERMEDIATE_DIR)/ApplyGenericRGB.h', |
michael@0 | 34 | ], |
michael@0 | 35 | 'action': ['xxd', '-i', '<@(_inputs)', '<@(_outputs)'], |
michael@0 | 36 | }, |
michael@0 | 37 | ], |
michael@0 | 38 | }, |
michael@0 | 39 | ], |
michael@0 | 40 | } |