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

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

Issue 18034029: [Android] Fix compilation with order_profiling=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('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 'target_name': 'md5sum', 8 'target_name': 'md5sum',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 13 matching lines...) Expand all
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
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 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698