OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'target_defaults': { |
| 7 'type': 'executable', |
| 8 'link_settings': { |
| 9 'libraries': [ |
| 10 '$(SDKROOT)/usr/lib/libbz2.dylib', |
| 11 '$(SDKROOT)/usr/lib/libz.dylib', |
| 12 '$(SDKROOT)/usr/lib/libcrypto.dylib', |
| 13 ], |
| 14 }, |
| 15 }, |
| 16 'targets': [ |
| 17 { |
| 18 'target_name': 'goobsdiff', |
| 19 'sources': [ |
| 20 'goobsdiff.c', |
| 21 ], |
| 22 }, |
| 23 { |
| 24 'target_name': 'goobspatch', |
| 25 'sources': [ |
| 26 'goobspatch.c', |
| 27 ], |
| 28 }, |
| 29 ], |
| 30 } |
| 31 |
| 32 # Local Variables: |
| 33 # tab-width:2 |
| 34 # indent-tabs-mode:nil |
| 35 # End: |
| 36 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |