| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../../../../..', | 8 '../../../../..', |
| 9 ], | 9 ], |
| 10 'link_settings': { | 10 'link_settings': { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 }, | 23 }, |
| 24 }, | 24 }, |
| 25 'targets': [ | 25 'targets': [ |
| 26 { | 26 { |
| 27 # Because size is a concern, don't link against all of base. Instead, | 27 # Because size is a concern, don't link against all of base. Instead, |
| 28 # just bring in a copy of the one component that's needed, along with | 28 # just bring in a copy of the one component that's needed, along with |
| 29 # the adapter that allows it to be called from C (not C++) code. | 29 # the adapter that allows it to be called from C (not C++) code. |
| 30 'target_name': 'goobsdiff_sha1_adapter', | 30 'target_name': 'goobsdiff_sha1_adapter', |
| 31 'type': 'static_library', | 31 'type': 'static_library', |
| 32 'sources': [ | 32 'sources': [ |
| 33 '../../../../../base/sha1_portable.cc', | 33 '../../../../../base/sha1.cc', |
| 34 'sha1_adapter.cc', | 34 'sha1_adapter.cc', |
| 35 'sha1_adapter.h', | 35 'sha1_adapter.h', |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 'target_name': 'goobsdiff', | 39 'target_name': 'goobsdiff', |
| 40 'type': 'executable', | 40 'type': 'executable', |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 'goobsdiff_sha1_adapter', | 42 'goobsdiff_sha1_adapter', |
| 43 '../xz/xz.gyp:lzma', | 43 '../xz/xz.gyp:lzma', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 54 'goobsdiff_sha1_adapter', | 54 'goobsdiff_sha1_adapter', |
| 55 '../xz/xz.gyp:lzma_decompress', | 55 '../xz/xz.gyp:lzma_decompress', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 'empty.cc', | 58 'empty.cc', |
| 59 'goobspatch.c', | 59 'goobspatch.c', |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| 62 ], | 62 ], |
| 63 } | 63 } |
| OLD | NEW |