summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 22:21:55 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 22:21:55 +0000
commit1bd17873cb2bc20b0be5e8b03f67fe61ecb17037 (patch)
tree09aa98b58487c401dbc243c0c69776caa303f715 /build
parent99265f486e2ac6c50603e371451e1899504ab588 (diff)
downloadchromium_src-1bd17873cb2bc20b0be5e8b03f67fe61ecb17037.zip
chromium_src-1bd17873cb2bc20b0be5e8b03f67fe61ecb17037.tar.gz
chromium_src-1bd17873cb2bc20b0be5e8b03f67fe61ecb17037.tar.bz2
Making what gets generated platform conditional to allow gradual phase in on windows.
Review URL: http://codereview.chromium.org/42003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11387 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/all.gyp57
1 files changed, 35 insertions, 22 deletions
diff --git a/build/all.gyp b/build/all.gyp
index 1b17edf..924963b 100644
--- a/build/all.gyp
+++ b/build/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:*',
+ ],
+ }],
],
},
],