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

Side by Side Diff: ios/crnet/crnet_pack.gyp

Issue 1670613002: Silence libtool warning when building libcrnet_standalone.a. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove libtool_re5 use Created 4 years, 10 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
« no previous file with comments | « ios/build/packaging/link_dependencies.py ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [], 9 'targets': [],
10 'conditions': [ 10 'conditions': [
(...skipping 30 matching lines...) Expand all
41 ], 41 ],
42 'actions': [ 42 'actions': [
43 { 43 {
44 'action_name': 'Package CrNet', 44 'action_name': 'Package CrNet',
45 'variables': { 45 'variables': {
46 'tool_path': 46 'tool_path':
47 '../../ios/build/packaging/link_dependencies.py', 47 '../../ios/build/packaging/link_dependencies.py',
48 }, 48 },
49 49
50 # Actions need an inputs list, even if it's empty. 50 # Actions need an inputs list, even if it's empty.
51 'inputs': [], 51 'inputs': [
52 '<(tool_path)',
53 '<(PRODUCT_DIR)/crnet_dummy.app/crnet_dummy',
54 ],
52 # Only specify one output, since this will be libtool's output. 55 # Only specify one output, since this will be libtool's output.
53 'outputs': [ '<(PRODUCT_DIR)/libcrnet_standalone.a' ], 56 'outputs': [ '<(PRODUCT_DIR)/libcrnet_standalone.a' ],
54 'action': ['<(tool_path)', 57 'action': ['<(tool_path)',
55 '<(PRODUCT_DIR)', 58 '<(PRODUCT_DIR)',
56 'crnet_dummy.app/crnet_dummy', 59 'crnet_dummy.app/crnet_dummy',
57 '<@(_outputs)', 60 '<@(_outputs)',
58 ], 61 ],
59 }, 62 },
60 ], 63 ],
61 }, 64 },
62 ], 65 ],
63 }], 66 }],
64 ], 67 ],
65 } 68 }
OLDNEW
« no previous file with comments | « ios/build/packaging/link_dependencies.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698