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

Unified Diff: test/make_global_settings/full-toolchain/make_global_settings.gyp

Issue 164023009: Support for custom NM/readelf binaries in your toolchain. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 4 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
Index: test/make_global_settings/full-toolchain/make_global_settings.gyp
diff --git a/test/make_global_settings/basics/make_global_settings.gyp b/test/make_global_settings/full-toolchain/make_global_settings.gyp
similarity index 54%
copy from test/make_global_settings/basics/make_global_settings.gyp
copy to test/make_global_settings/full-toolchain/make_global_settings.gyp
index 47dbc8570fe7dc57e76687971cd03edfad72ed38..9389b8c0b8fad406d6bb8187487e0cea28792dae 100644
--- a/test/make_global_settings/basics/make_global_settings.gyp
+++ b/test/make_global_settings/full-toolchain/make_global_settings.gyp
@@ -4,14 +4,19 @@
{
'make_global_settings': [
- ['CC', 'clang'],
- ['LINK', 'clang'],
+ ['CC', '/bin/echo MY_CC'],
+ ['CXX', '/bin/echo MY_CXX'],
+ ['NM', 'my_nm.py'],
+ ['READELF', 'my_readelf.py'],
],
'targets': [
{
'target_name': 'test',
- 'type': 'static_library',
- 'sources': [ 'foo.c' ],
+ 'type': 'shared_library',
+ 'sources': [
+ 'foo.c',
+ 'bar.cc',
+ ],
},
],
}

Powered by Google App Engine
This is Rietveld 408576698