Making what gets generated platform conditional to allow gradual phase in on windows.

Review URL: http://codereview.chromium.org/42003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11387 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
bradnelson@google.com 2009-03-10 22:21:55 +00:00
Родитель 4ed411c875
Коммит 6f1ae5601a
1 изменённых файлов: 35 добавлений и 22 удалений

57
all.gyp
Просмотреть файл

@ -5,6 +5,13 @@
{
'variables': {
'chromium_code': 1,
'conditions': [
['OS!="win"', {
'all_gyps%': 1,
},{ # else OS=="win"
'all_gyps%': 0,
}],
],
},
'includes': [
'common.gypi',
@ -15,28 +22,34 @@
'type': 'none',
'dependencies': [
'../base/base.gyp:*',
'../chrome/chrome.gyp:*',
'../media/media.gyp:*',
'../net/net.gyp:*',
'../printing/printing.gyp:*',
'../sdch/sdch.gyp:*',
'../skia/skia.gyp:*',
'../testing/gtest.gyp:*',
'../third_party/bzip2/bzip2.gyp:*',
'../third_party/icu38/icu38.gyp:*',
'../third_party/libevent/libevent.gyp:*',
'../third_party/libjpeg/libjpeg.gyp:*',
'../third_party/libpng/libpng.gyp:*',
'../third_party/libxml/libxml.gyp:*',
'../third_party/libxslt/libxslt.gyp:*',
'../third_party/modp_b64/modp_b64.gyp:*',
'../third_party/npapi/npapi.gyp:*',
'../third_party/sqlite/sqlite.gyp:*',
'../third_party/zlib/zlib.gyp:*',
'../webkit/tools/test_shell/test_shell.gyp:*',
'../webkit/webkit.gyp:*',
'temp_gyp/googleurl.gyp:*',
'temp_gyp/v8.gyp:*',
],
'conditions': [
['all_gyps', {
'dependencies': [
'../chrome/chrome.gyp:*',
'../media/media.gyp:*',
'../net/net.gyp:*',
'../printing/printing.gyp:*',
'../sdch/sdch.gyp:*',
'../skia/skia.gyp:*',
'../testing/gtest.gyp:*',
'../third_party/bzip2/bzip2.gyp:*',
'../third_party/icu38/icu38.gyp:*',
'../third_party/libevent/libevent.gyp:*',
'../third_party/libjpeg/libjpeg.gyp:*',
'../third_party/libpng/libpng.gyp:*',
'../third_party/libxml/libxml.gyp:*',
'../third_party/libxslt/libxslt.gyp:*',
'../third_party/modp_b64/modp_b64.gyp:*',
'../third_party/npapi/npapi.gyp:*',
'../third_party/sqlite/sqlite.gyp:*',
'../third_party/zlib/zlib.gyp:*',
'../webkit/tools/test_shell/test_shell.gyp:*',
'../webkit/webkit.gyp:*',
'temp_gyp/googleurl.gyp:*',
'temp_gyp/v8.gyp:*',
],
}],
],
},
],