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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 '../views/views.gyp:*', | 89 '../views/views.gyp:*', |
90 ], | 90 ], |
91 }], | 91 }], |
92 ], | 92 ], |
93 }, | 93 }, |
94 ], | 94 ], |
95 'conditions': [ | 95 'conditions': [ |
96 ['OS=="mac"', { | 96 ['OS=="mac"', { |
97 'targets': [ | 97 'targets': [ |
98 { | 98 { |
99 # This target is legacy and can go away when the bots have been | |
100 # updated to direclty build the test_shell targets. | |
101 'target_name': 'build_for_layout_tests', | |
102 'type': 'none', | |
103 'dependencies': [ | |
104 '../webkit/tools/test_shell/test_shell.gyp:*', | |
105 ], | |
106 }, | |
107 { | |
108 # Target to build everything plus the dmg. We don't put the dmg | 99 # Target to build everything plus the dmg. We don't put the dmg |
109 # in the All target because developers really don't need it. | 100 # in the All target because developers really don't need it. |
110 'target_name': 'all_and_dmg', | 101 'target_name': 'all_and_dmg', |
111 'type': 'none', | 102 'type': 'none', |
112 'dependencies': [ | 103 'dependencies': [ |
113 'All', | 104 'All', |
114 '../chrome/chrome.gyp:build_app_dmg', | 105 '../chrome/chrome.gyp:build_app_dmg', |
115 ], | 106 ], |
116 }, | 107 }, |
117 ], | 108 # These targets are hear so the build bots can use them to build |
Mark Mentovai
2009/09/11 20:27:53
here
| |
118 }], | 109 # subsets of a full tree for faster cycle times. |
119 ], | 110 { |
111 'target_name': 'chromium_builder_dbg', | |
112 'xcode_create_dependents_test_runner': 1, | |
113 'type': 'none', | |
114 'dependencies': [ | |
115 '../app/app.gyp:app_unittests', | |
116 '../ipc/ipc.gyp:ipc_tests', | |
117 '../media/media.gyp:media_unittests', | |
118 '../printing/printing.gyp:printing_unittests', | |
119 '../chrome/chrome.gyp:ui_tests', | |
120 '../chrome/chrome.gyp:unit_tests', | |
121 ], | |
122 }, | |
123 { | |
124 'target_name': 'chromium_builder_rel', | |
125 'type': 'none', | |
126 'dependencies': [ | |
127 '../app/app.gyp:app_unittests', | |
128 '../chrome/chrome.gyp:memory_test', | |
129 '../chrome/chrome.gyp:page_cycler_tests', | |
130 '../chrome/chrome.gyp:startup_tests', | |
131 '../chrome/chrome.gyp:tab_switching_test', | |
132 '../chrome/chrome.gyp:ui_tests', | |
133 '../chrome/chrome.gyp:unit_tests', | |
134 '../chrome/chrome.gyp:url_fetch_test', | |
135 '../ipc/ipc.gyp:ipc_tests', | |
136 '../media/media.gyp:media_unittests', | |
137 '../printing/printing.gyp:printing_unittests', | |
138 ], | |
139 }, | |
140 ], # targets | |
141 }], # OS="mac" | |
142 ], # conditions | |
120 } | 143 } |
OLD | NEW |