| 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',
|
| + ],
|
| },
|
| ],
|
| }
|
|
|