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

Side by Side Diff: build/mac/asan.gyp

Issue 232723003: Fix variables expansion in build/mac/asan.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « no previous file | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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': 'asan_dynamic_runtime', 8 'target_name': 'asan_dynamic_runtime',
9 'type': 'none', 9 'type': 'none',
10 'variables': { 10 'variables': {
(...skipping 19 matching lines...) Expand all
30 }, 30 },
31 ], 31 ],
32 }], 32 }],
33 # ASan works with iOS simulator only, not bare-metal iOS. 33 # ASan works with iOS simulator only, not bare-metal iOS.
34 ['OS=="ios" and target_arch=="ia32"', { 34 ['OS=="ios" and target_arch=="ia32"', {
35 'toolsets': ['host', 'target'], 35 'toolsets': ['host', 'target'],
36 'copies': [ 36 'copies': [
37 { 37 {
38 'destination': '<(PRODUCT_DIR)', 38 'destination': '<(PRODUCT_DIR)',
39 'target_conditions': [ 39 'target_conditions': [
40 ['_toolset=="host"', { 'files': [ 'asan_osx_dynamic'] }], 40 ['_toolset=="host"', {
41 ['_toolset=="target"', { 'files': [ 'asan_iossim_dynamic'] }], 41 'files': [ '<!(/bin/ls <(asan_osx_dynamic))'],
42 }],
43 ['_toolset=="target"', {
44 'files': [ '<!(/bin/ls <(asan_iossim_dynamic))'],
45 }],
42 ], 46 ],
43 }, 47 },
44 ], 48 ],
45 }], 49 }],
46 ], 50 ],
47 }, 51 },
48 ], 52 ],
49 } 53 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698