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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 3548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3559 ], | 3559 ], |
3560 }, | 3560 }, |
3561 'sources': [ | 3561 'sources': [ |
3562 'app/breakpad_mac_stubs.mm', | 3562 'app/breakpad_mac_stubs.mm', |
3563 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! | 3563 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! |
3564 # It seems a waste to have an app_unittests target, so for now | 3564 # It seems a waste to have an app_unittests target, so for now |
3565 # I add keystone_glue.m explicitly to this target. | 3565 # I add keystone_glue.m explicitly to this target. |
3566 'app/keystone_glue.m', | 3566 'app/keystone_glue.m', |
3567 'app/keystone_glue_unittest.mm', | 3567 'app/keystone_glue_unittest.mm', |
3568 # All unittests in browser, common, and renderer. | 3568 # All unittests in browser, common, and renderer. |
| 3569 'browser/autocomplete/autocomplete_edit_view_mac_unittest.mm', |
3569 'browser/autocomplete/autocomplete_unittest.cc', | 3570 'browser/autocomplete/autocomplete_unittest.cc', |
3570 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', | 3571 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', |
3571 'browser/autocomplete/history_contents_provider_unittest.cc', | 3572 'browser/autocomplete/history_contents_provider_unittest.cc', |
3572 'browser/autocomplete/history_url_provider_unittest.cc', | 3573 'browser/autocomplete/history_url_provider_unittest.cc', |
3573 'browser/autocomplete/keyword_provider_unittest.cc', | 3574 'browser/autocomplete/keyword_provider_unittest.cc', |
3574 'browser/autocomplete/search_provider_unittest.cc', | 3575 'browser/autocomplete/search_provider_unittest.cc', |
3575 'browser/back_forward_menu_model_unittest.cc', | 3576 'browser/back_forward_menu_model_unittest.cc', |
3576 'browser/blocked_popup_container_unittest.cc', | 3577 'browser/blocked_popup_container_unittest.cc', |
3577 'browser/bookmarks/bookmark_codec_unittest.cc', | 3578 'browser/bookmarks/bookmark_codec_unittest.cc', |
3578 'browser/bookmarks/bookmark_drag_data_unittest.cc', | 3579 'browser/bookmarks/bookmark_drag_data_unittest.cc', |
(...skipping 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5042 # Use outputs of this action as inputs for the main target build. | 5043 # Use outputs of this action as inputs for the main target build. |
5043 # Seems as a misnomer but makes this happy on Linux (scons). | 5044 # Seems as a misnomer but makes this happy on Linux (scons). |
5044 'process_outputs_as_sources': 1, | 5045 'process_outputs_as_sources': 1, |
5045 }, | 5046 }, |
5046 ], # 'actions' | 5047 ], # 'actions' |
5047 }, | 5048 }, |
5048 ] | 5049 ] |
5049 }], | 5050 }], |
5050 ], # 'conditions' | 5051 ], # 'conditions' |
5051 } | 5052 } |
OLD | NEW |