OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'conditions': [ |
| 9 ['OS!="win"', { |
| 10 'all_gyps%': 1, |
| 11 },{ # else OS=="win" |
| 12 'all_gyps%': 0, |
| 13 }], |
| 14 ], |
8 }, | 15 }, |
9 'includes': [ | 16 'includes': [ |
10 'common.gypi', | 17 'common.gypi', |
11 ], | 18 ], |
12 'targets': [ | 19 'targets': [ |
13 { | 20 { |
14 'target_name': 'All', | 21 'target_name': 'All', |
15 'type': 'none', | 22 'type': 'none', |
16 'dependencies': [ | 23 'dependencies': [ |
17 '../base/base.gyp:*', | 24 '../base/base.gyp:*', |
18 '../chrome/chrome.gyp:*', | 25 ], |
19 '../media/media.gyp:*', | 26 'conditions': [ |
20 '../net/net.gyp:*', | 27 ['all_gyps', { |
21 '../printing/printing.gyp:*', | 28 'dependencies': [ |
22 '../sdch/sdch.gyp:*', | 29 '../chrome/chrome.gyp:*', |
23 '../skia/skia.gyp:*', | 30 '../media/media.gyp:*', |
24 '../testing/gtest.gyp:*', | 31 '../net/net.gyp:*', |
25 '../third_party/bzip2/bzip2.gyp:*', | 32 '../printing/printing.gyp:*', |
26 '../third_party/icu38/icu38.gyp:*', | 33 '../sdch/sdch.gyp:*', |
27 '../third_party/libevent/libevent.gyp:*', | 34 '../skia/skia.gyp:*', |
28 '../third_party/libjpeg/libjpeg.gyp:*', | 35 '../testing/gtest.gyp:*', |
29 '../third_party/libpng/libpng.gyp:*', | 36 '../third_party/bzip2/bzip2.gyp:*', |
30 '../third_party/libxml/libxml.gyp:*', | 37 '../third_party/icu38/icu38.gyp:*', |
31 '../third_party/libxslt/libxslt.gyp:*', | 38 '../third_party/libevent/libevent.gyp:*', |
32 '../third_party/modp_b64/modp_b64.gyp:*', | 39 '../third_party/libjpeg/libjpeg.gyp:*', |
33 '../third_party/npapi/npapi.gyp:*', | 40 '../third_party/libpng/libpng.gyp:*', |
34 '../third_party/sqlite/sqlite.gyp:*', | 41 '../third_party/libxml/libxml.gyp:*', |
35 '../third_party/zlib/zlib.gyp:*', | 42 '../third_party/libxslt/libxslt.gyp:*', |
36 '../webkit/tools/test_shell/test_shell.gyp:*', | 43 '../third_party/modp_b64/modp_b64.gyp:*', |
37 '../webkit/webkit.gyp:*', | 44 '../third_party/npapi/npapi.gyp:*', |
38 'temp_gyp/googleurl.gyp:*', | 45 '../third_party/sqlite/sqlite.gyp:*', |
39 'temp_gyp/v8.gyp:*', | 46 '../third_party/zlib/zlib.gyp:*', |
| 47 '../webkit/tools/test_shell/test_shell.gyp:*', |
| 48 '../webkit/webkit.gyp:*', |
| 49 'temp_gyp/googleurl.gyp:*', |
| 50 'temp_gyp/v8.gyp:*', |
| 51 ], |
| 52 }], |
40 ], | 53 ], |
41 }, | 54 }, |
42 ], | 55 ], |
43 } | 56 } |
OLD | NEW |