| 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 '../net/net.gyp:*', | 25 '../net/net.gyp:*', |
| 26 ], | 26 ], |
| 27 'conditions': [ | 27 'conditions': [ |
| 28 ['OS=="linux"', { |
| 29 'dependencies': [ |
| 30 '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*', |
| 31 ], |
| 32 }], |
| 28 ['OS=="win"', { | 33 ['OS=="win"', { |
| 29 'dependencies': [ | 34 'dependencies': [ |
| 30 '../sandbox/sandbox.gyp:*', | 35 '../sandbox/sandbox.gyp:*', |
| 31 ], | 36 ], |
| 32 }], | 37 }], |
| 33 ['all_gyps', { | 38 ['all_gyps', { |
| 34 'dependencies': [ | 39 'dependencies': [ |
| 35 '../chrome/chrome.gyp:*', | 40 '../chrome/chrome.gyp:*', |
| 36 '../media/media.gyp:*', | 41 '../media/media.gyp:*', |
| 37 '../printing/printing.gyp:*', | 42 '../printing/printing.gyp:*', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 53 '../webkit/webkit.gyp:*', | 58 '../webkit/webkit.gyp:*', |
| 54 'temp_gyp/googleurl.gyp:*', | 59 'temp_gyp/googleurl.gyp:*', |
| 55 'temp_gyp/v8.gyp:*', | 60 'temp_gyp/v8.gyp:*', |
| 56 ], | 61 ], |
| 57 }], | 62 }], |
| 58 ], | 63 ], |
| 59 }, | 64 }, |
| 60 ], | 65 ], |
| 61 } | 66 } |
| 62 | 67 |
| OLD | NEW |