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

Side by Side Diff: test/make_global_settings/ar/make_global_settings_ar.gyp

Issue 320743002: Add unittest for 'AR' in 'make_global_settings' (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 6 years, 6 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 | « test/make_global_settings/ar/gyptest-make_global_settings_ar.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
(Empty)
1 # Copyright (c) 2014 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style licence that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'custom_ar_target%': '',
8 'custom_ar_host%': '',
9 },
10 'conditions': [
11 ['"<(custom_ar_target)"!=""', {
12 'make_global_settings': [
13 ['AR', '<(custom_ar_target)'],
14 ],
15 }],
16 ['"<(custom_ar_host)"!=""', {
17 'make_global_settings': [
18 ['AR.host', '<(custom_ar_host)'],
19 ],
20 }],
21 ],
22 'targets': [
23 {
24 'target_name': 'make_global_settings_ar_test',
25 'type': 'static_library',
26 'sources': [ 'foo.c' ],
27 },
28 ],
29 }
OLDNEW
« no previous file with comments | « test/make_global_settings/ar/gyptest-make_global_settings_ar.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698