Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: tools/android/md5sum/md5sum.gyp

Issue 1516533002: GN: Add symlink rules for dump_syms, symupload (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments 2 Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/android/md5sum/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tools/android/md5sum/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698