| 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 'conditions': [ | 7 'conditions': [ |
| 8 ['OS!="win"', { | 8 ['OS!="win"', { |
| 9 'all_gyps%': 1, | 9 'all_gyps%': 1, |
| 10 },{ # else OS=="win" | 10 },{ # else OS=="win" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ['all_gyps', { | 72 ['all_gyps', { |
| 73 'dependencies': [ | 73 'dependencies': [ |
| 74 '../chrome/chrome.gyp:*', | 74 '../chrome/chrome.gyp:*', |
| 75 ], | 75 ], |
| 76 }], | 76 }], |
| 77 ], | 77 ], |
| 78 }, | 78 }, |
| 79 ], | 79 ], |
| 80 'conditions': [ | 80 'conditions': [ |
| 81 ['OS=="mac"', { | 81 ['OS=="mac"', { |
| 82 # Target to build everything needed for layout tests to cut down | |
| 83 # on what the layout test bots have to build. | |
| 84 'targets': [ | 82 'targets': [ |
| 85 { | 83 { |
| 84 # Target to build everything needed for layout tests to cut down |
| 85 # on what the layout test bots have to build. |
| 86 'target_name': 'build_for_layout_tests', | 86 'target_name': 'build_for_layout_tests', |
| 87 'type': 'none', | 87 'type': 'none', |
| 88 'dependencies': [ | 88 'dependencies': [ |
| 89 '../chrome/chrome.gyp:image_diff', | 89 '../chrome/chrome.gyp:image_diff', |
| 90 '../webkit/tools/test_shell/test_shell.gyp:test_shell', | 90 '../webkit/tools/test_shell/test_shell.gyp:test_shell', |
| 91 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', | 91 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', |
| 92 ], | 92 ], |
| 93 }, | 93 }, |
| 94 { |
| 95 # Target to build everything plus the dmg. We don't put the dmg |
| 96 # in the All target because developer really don't need it. |
| 97 'target_name': 'all_and_dmg', |
| 98 'type': 'none', |
| 99 'dependencies': [ |
| 100 'All', |
| 101 '../chrome/chrome.gyp:build_app_dmg', |
| 102 ], |
| 103 }, |
| 94 ], | 104 ], |
| 95 }], | 105 }], |
| 96 ], | 106 ], |
| 97 } | 107 } |
| OLD | NEW |