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 'target_name': 'md5sum', | 8 'target_name': 'md5sum', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 'type': 'executable', | 24 'type': 'executable', |
25 'dependencies': [ | 25 'dependencies': [ |
26 '../../../base/base.gyp:base', | 26 '../../../base/base.gyp:base', |
27 ], | 27 ], |
28 'include_dirs': [ | 28 'include_dirs': [ |
29 '../../..', | 29 '../../..', |
30 ], | 30 ], |
31 'sources': [ | 31 'sources': [ |
32 'md5sum.cc', | 32 'md5sum.cc', |
33 ], | 33 ], |
| 34 'conditions': [ |
| 35 [ 'order_profiling!=0 and OS=="android"', { |
| 36 'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofi
le', ], |
| 37 }], |
| 38 ], |
34 }, | 39 }, |
35 { | 40 { |
36 'target_name': 'md5sum_stripped_device_bin', | 41 'target_name': 'md5sum_stripped_device_bin', |
37 'type': 'none', | 42 'type': 'none', |
38 'dependencies': [ | 43 'dependencies': [ |
39 'md5sum_device_bin', | 44 'md5sum_device_bin', |
40 ], | 45 ], |
41 'actions': [ | 46 'actions': [ |
42 { | 47 { |
43 'action_name': 'strip_md5sum_device_bin', | 48 'action_name': 'strip_md5sum_device_bin', |
(...skipping 19 matching lines...) Expand all Loading... |
63 ], | 68 ], |
64 'include_dirs': [ | 69 'include_dirs': [ |
65 '../../..', | 70 '../../..', |
66 ], | 71 ], |
67 'sources': [ | 72 'sources': [ |
68 'md5sum.cc', | 73 'md5sum.cc', |
69 ], | 74 ], |
70 }, | 75 }, |
71 ], | 76 ], |
72 } | 77 } |
OLD | NEW |