| 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': [ | 8 'conditions': [ |
| 9 ['OS!="win"', { | 9 ['OS!="win"', { |
| 10 'all_gyps%': 1, | 10 'all_gyps%': 1, |
| 11 },{ # else OS=="win" | 11 },{ # else OS=="win" |
| 12 'all_gyps%': 0, | 12 'all_gyps%': 0, |
| 13 }], | 13 }], |
| 14 ], | 14 ], |
| 15 }, | 15 }, |
| 16 'includes': [ | 16 'includes': [ |
| 17 'common.gypi', | 17 'common.gypi', |
| 18 ], | 18 ], |
| 19 'targets': [ | 19 'targets': [ |
| 20 { | 20 { |
| 21 'target_name': 'All', | 21 'target_name': 'All', |
| 22 'type': 'none', | 22 'type': 'none', |
| 23 'dependencies': [ | 23 'dependencies': [ |
| 24 '../base/base.gyp:*', | 24 '../base/base.gyp:*', |
| 25 '../media/media.gyp:*', | 25 '../media/media.gyp:*', |
| 26 '../net/net.gyp:*', | 26 '../net/net.gyp:*', |
| 27 '../printing/printing.gyp:*', | 27 '../printing/printing.gyp:*', |
| 28 '../sdch/sdch.gyp:*', | 28 '../sdch/sdch.gyp:*', |
| 29 '../skia/skia.gyp:*', | 29 '../skia/skia.gyp:*', |
| 30 '../testing/gtest.gyp:*', |
| 30 '../third_party/bzip2/bzip2.gyp:*', | 31 '../third_party/bzip2/bzip2.gyp:*', |
| 31 '../third_party/icu38/icu38.gyp:*', | 32 '../third_party/icu38/icu38.gyp:*', |
| 32 '../third_party/libjpeg/libjpeg.gyp:*', | 33 '../third_party/libjpeg/libjpeg.gyp:*', |
| 33 '../third_party/libpng/libpng.gyp:*', | 34 '../third_party/libpng/libpng.gyp:*', |
| 34 '../third_party/libxml/libxml.gyp:*', | 35 '../third_party/libxml/libxml.gyp:*', |
| 35 '../third_party/libxslt/libxslt.gyp:*', | 36 '../third_party/libxslt/libxslt.gyp:*', |
| 36 '../third_party/modp_b64/modp_b64.gyp:*', | 37 '../third_party/modp_b64/modp_b64.gyp:*', |
| 37 '../third_party/npapi/npapi.gyp:*', | 38 '../third_party/npapi/npapi.gyp:*', |
| 38 '../third_party/sqlite/sqlite.gyp:*', | 39 '../third_party/sqlite/sqlite.gyp:*', |
| 39 '../third_party/zlib/zlib.gyp:*', | 40 '../third_party/zlib/zlib.gyp:*', |
| 40 'temp_gyp/googleurl.gyp:*', | 41 'temp_gyp/googleurl.gyp:*', |
| 42 'temp_gyp/v8.gyp:*', |
| 41 ], | 43 ], |
| 42 'conditions': [ | 44 'conditions': [ |
| 43 ['OS=="linux"', { | 45 ['OS=="linux"', { |
| 44 'dependencies': [ | 46 'dependencies': [ |
| 45 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', | 47 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', |
| 46 ], | 48 ], |
| 47 }], | 49 }], |
| 48 ['OS=="win"', { | 50 ['OS=="win"', { |
| 49 'dependencies': [ | 51 'dependencies': [ |
| 50 '../sandbox/sandbox.gyp:*', | 52 '../sandbox/sandbox.gyp:*', |
| 51 ], | 53 ], |
| 52 }, { | 54 }, { |
| 53 'dependencies': [ | 55 'dependencies': [ |
| 54 '../third_party/libevent/libevent.gyp:*', | 56 '../third_party/libevent/libevent.gyp:*', |
| 55 ], | 57 ], |
| 56 }], | 58 }], |
| 57 ['all_gyps', { | 59 ['all_gyps', { |
| 58 'dependencies': [ | 60 'dependencies': [ |
| 59 '../chrome/chrome.gyp:*', | 61 '../chrome/chrome.gyp:*', |
| 60 '../testing/gtest.gyp:*', | |
| 61 '../webkit/tools/test_shell/test_shell.gyp:*', | 62 '../webkit/tools/test_shell/test_shell.gyp:*', |
| 62 '../webkit/webkit.gyp:*', | 63 '../webkit/webkit.gyp:*', |
| 63 'temp_gyp/v8.gyp:*', | |
| 64 ], | 64 ], |
| 65 }], | 65 }], |
| 66 ], | 66 ], |
| 67 }, | 67 }, |
| 68 ], | 68 ], |
| 69 } | 69 } |
| 70 | 70 |
| OLD | NEW |