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

Unified Diff: test/make_global_settings/ld/make_global_settings_ld.gyp

Issue 322973006: Add unittest for 'LD' in 'make_global_settings' (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/make_global_settings/ld/gyptest-make_global_settings_ld.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/make_global_settings/ld/make_global_settings_ld.gyp
diff --git a/test/make_global_settings/ar/make_global_settings_ar.gyp b/test/make_global_settings/ld/make_global_settings_ld.gyp
similarity index 60%
copy from test/make_global_settings/ar/make_global_settings_ar.gyp
copy to test/make_global_settings/ld/make_global_settings_ld.gyp
index 3430d82a517aec983ecfefec1595399982f3dfb6..6837c77326153c3afdee418404127c1527af27cf 100644
--- a/test/make_global_settings/ar/make_global_settings_ar.gyp
+++ b/test/make_global_settings/ld/make_global_settings_ld.gyp
@@ -4,24 +4,24 @@
{
'variables': {
- 'custom_ar_target%': '',
- 'custom_ar_host%': '',
+ 'custom_ld_target%': '',
+ 'custom_ld_host%': '',
},
'conditions': [
- ['"<(custom_ar_target)"!=""', {
+ ['"<(custom_ld_target)"!=""', {
'make_global_settings': [
- ['AR', '<(custom_ar_target)'],
+ ['LD', '<(custom_ld_target)'],
],
}],
- ['"<(custom_ar_host)"!=""', {
+ ['"<(custom_ld_host)"!=""', {
'make_global_settings': [
- ['AR.host', '<(custom_ar_host)'],
+ ['LD.host', '<(custom_ld_host)'],
],
}],
],
'targets': [
{
- 'target_name': 'make_global_settings_ar_test',
+ 'target_name': 'make_global_settings_ld_test',
'type': 'static_library',
'sources': [ 'foo.c' ],
},
« no previous file with comments | « test/make_global_settings/ld/gyptest-make_global_settings_ld.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698