Fix pkg_config_wrapper.py paths now that the updated gyp executes

the variable expansion from the same directory as the .gyp file
Review URL: http://codereview.chromium.org/50085

git-svn-id: http://src.chromium.org/svn/trunk/src/build@12245 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
sgk@google.com 2009-03-21 12:43:27 +00:00
Родитель bc2e6508b6
Коммит 88fb64ce4b
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -9,12 +9,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
'<!@(python ../build/linux/pkg_config_wrapper.py --cflags gtk+-2.0)',
'<!@(python pkg_config_wrapper.py --cflags gtk+-2.0)',
],
},
'link_settings': {
'libraries': [
'<!@(python ../build/linux/pkg_config_wrapper.py --libs gtk+-2.0)',
'<!@(python pkg_config_wrapper.py --libs gtk+-2.0)',
],
},
},
@ -23,12 +23,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
'<!@(python ../build/linux/pkg_config_wrapper.py --cflags nss)',
'<!@(python pkg_config_wrapper.py --cflags nss)',
],
},
'link_settings': {
'libraries': [
'<!@(python ../build/linux/pkg_config_wrapper.py --libs nss)',
'<!@(python pkg_config_wrapper.py --libs nss)',
],
},
},
@ -37,12 +37,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
'<!@(python ../build/linux/pkg_config_wrapper.py --cflags pangoft2)',
'<!@(python pkg_config_wrapper.py --cflags pangoft2)',
],
},
'link_settings': {
'libraries': [
'<!@(python ../build/linux/pkg_config_wrapper.py --libs pangoft2)',
'<!@(python pkg_config_wrapper.py --libs pangoft2)',
],
},
},