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 | 8 |
9 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
(...skipping 3934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3945 ], | 3945 ], |
3946 }, | 3946 }, |
3947 'sources': [ | 3947 'sources': [ |
3948 'app/breakpad_mac_stubs.mm', | 3948 'app/breakpad_mac_stubs.mm', |
3949 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! | 3949 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! |
3950 # It seems a waste to have an app_unittests target, so for now | 3950 # It seems a waste to have an app_unittests target, so for now |
3951 # I add keystone_glue.m explicitly to this target. | 3951 # I add keystone_glue.m explicitly to this target. |
3952 'app/keystone_glue.m', | 3952 'app/keystone_glue.m', |
3953 'app/keystone_glue_unittest.mm', | 3953 'app/keystone_glue_unittest.mm', |
3954 # All unittests in browser, common, and renderer. | 3954 # All unittests in browser, common, and renderer. |
| 3955 'browser/app_controller_mac_unittest.mm', |
3955 'browser/autocomplete/autocomplete_edit_view_mac_unittest.mm', | 3956 'browser/autocomplete/autocomplete_edit_view_mac_unittest.mm', |
3956 'browser/autocomplete/autocomplete_unittest.cc', | 3957 'browser/autocomplete/autocomplete_unittest.cc', |
3957 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', | 3958 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', |
3958 'browser/autocomplete/history_contents_provider_unittest.cc', | 3959 'browser/autocomplete/history_contents_provider_unittest.cc', |
3959 'browser/autocomplete/history_url_provider_unittest.cc', | 3960 'browser/autocomplete/history_url_provider_unittest.cc', |
3960 'browser/autocomplete/keyword_provider_unittest.cc', | 3961 'browser/autocomplete/keyword_provider_unittest.cc', |
3961 'browser/autocomplete/search_provider_unittest.cc', | 3962 'browser/autocomplete/search_provider_unittest.cc', |
3962 'browser/back_forward_menu_model_unittest.cc', | 3963 'browser/back_forward_menu_model_unittest.cc', |
3963 'browser/blocked_popup_container_unittest.cc', | 3964 'browser/blocked_popup_container_unittest.cc', |
3964 'browser/bookmarks/bookmark_codec_unittest.cc', | 3965 'browser/bookmarks/bookmark_codec_unittest.cc', |
(...skipping 2128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6093 # Use outputs of this action as inputs for the main target build. | 6094 # Use outputs of this action as inputs for the main target build. |
6094 # Seems as a misnomer but makes this happy on Linux (scons). | 6095 # Seems as a misnomer but makes this happy on Linux (scons). |
6095 'process_outputs_as_sources': 1, | 6096 'process_outputs_as_sources': 1, |
6096 }, | 6097 }, |
6097 ], # 'actions' | 6098 ], # 'actions' |
6098 }, | 6099 }, |
6099 ] | 6100 ] |
6100 }], | 6101 }], |
6101 ], # 'conditions' | 6102 ], # 'conditions' |
6102 } | 6103 } |
OLD | NEW |