OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN: //tools/android/md5sum:md5sum | 8 # GN: //tools/android/md5sum:md5sum |
9 'target_name': 'md5sum', | 9 'target_name': 'md5sum', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 '--strip-unneeded', | 56 '--strip-unneeded', |
57 '<@(_inputs)', | 57 '<@(_inputs)', |
58 '-o', | 58 '-o', |
59 '<@(_outputs)', | 59 '<@(_outputs)', |
60 ], | 60 ], |
61 }, | 61 }, |
62 ], | 62 ], |
63 }, | 63 }, |
64 # Same binary but for the host rather than the device. | 64 # Same binary but for the host rather than the device. |
65 { | 65 { |
66 # GN: //tools/android/md5sum:md5sum_copy_host($default_toolchain) | 66 # GN: //tools/android/md5sum:md5sum_bin_host($default_toolchain) |
67 'target_name': 'md5sum_bin_host', | 67 'target_name': 'md5sum_bin_host', |
68 'toolsets': ['host'], | 68 'toolsets': ['host'], |
69 'type': 'executable', | 69 'type': 'executable', |
70 'dependencies': [ | 70 'dependencies': [ |
71 '../../../base/base.gyp:base', | 71 '../../../base/base.gyp:base', |
72 ], | 72 ], |
73 'include_dirs': [ | 73 'include_dirs': [ |
74 '../../..', | 74 '../../..', |
75 ], | 75 ], |
76 'sources': [ | 76 'sources': [ |
77 'md5sum.cc', | 77 'md5sum.cc', |
78 ], | 78 ], |
79 }, | 79 }, |
80 ], | 80 ], |
81 } | 81 } |
OLD | NEW |