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 'includes': [ | 6 'includes': [ |
7 'common.gypi', | 7 'common.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 ], | 87 ], |
88 'conditions': [ | 88 'conditions': [ |
89 ['OS=="mac"', { | 89 ['OS=="mac"', { |
90 'targets': [ | 90 'targets': [ |
91 { | 91 { |
92 # Target to build everything needed for layout tests to cut down | 92 # Target to build everything needed for layout tests to cut down |
93 # on what the layout test bots have to build. | 93 # on what the layout test bots have to build. |
94 'target_name': 'build_for_layout_tests', | 94 'target_name': 'build_for_layout_tests', |
95 'type': 'none', | 95 'type': 'none', |
96 'dependencies': [ | 96 'dependencies': [ |
97 '../chrome/chrome.gyp:image_diff', | 97 '../tools/image_diff/image_diff.gyp:image_diff', |
98 '../webkit/tools/test_shell/test_shell.gyp:test_shell', | 98 '../webkit/tools/test_shell/test_shell.gyp:test_shell', |
99 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', | 99 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', |
100 ], | 100 ], |
101 }, | 101 }, |
102 { | 102 { |
103 # Target to build everything plus the dmg. We don't put the dmg | 103 # Target to build everything plus the dmg. We don't put the dmg |
104 # in the All target because developer really don't need it. | 104 # in the All target because developer really don't need it. |
105 'target_name': 'all_and_dmg', | 105 'target_name': 'all_and_dmg', |
106 'type': 'none', | 106 'type': 'none', |
107 'dependencies': [ | 107 'dependencies': [ |
108 'All', | 108 'All', |
109 '../chrome/chrome.gyp:build_app_dmg', | 109 '../chrome/chrome.gyp:build_app_dmg', |
110 ], | 110 ], |
111 }, | 111 }, |
112 ], | 112 ], |
113 }], | 113 }], |
114 ], | 114 ], |
115 } | 115 } |
OLD | NEW |