Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 77773002: Ensure the ExtensionSystem is ready before initializing an ExtensionAppModelBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 2140 matching lines...) Expand 10 before | Expand all | Expand 10 after
2151 'browser/extensions/pack_extension_unittest.cc', 2151 'browser/extensions/pack_extension_unittest.cc',
2152 'browser/extensions/permissions_updater_unittest.cc', 2152 'browser/extensions/permissions_updater_unittest.cc',
2153 'browser/extensions/sandboxed_unpacker_unittest.cc', 2153 'browser/extensions/sandboxed_unpacker_unittest.cc',
2154 'common/extensions/sync_type_unittest.cc', 2154 'common/extensions/sync_type_unittest.cc',
2155 'common/extensions/permissions/permission_set_unittest.cc', 2155 'common/extensions/permissions/permission_set_unittest.cc',
2156 'utility/extensions/unpacker_unittest.cc', 2156 'utility/extensions/unpacker_unittest.cc',
2157 ], 2157 ],
2158 }], 2158 }],
2159 ['use_ash==1', { 2159 ['use_ash==1', {
2160 'sources': [ 2160 'sources': [
2161 'browser/ui/app_list/extension_app_model_builder_unittest.cc',
2162 'browser/ui/app_list/search/app_search_provider_unittest.cc', 2161 'browser/ui/app_list/search/app_search_provider_unittest.cc',
2163 'browser/ui/app_list/search/history_unittest.cc', 2162 'browser/ui/app_list/search/history_unittest.cc',
2164 'browser/ui/app_list/search/history_data_store_unittest.cc', 2163 'browser/ui/app_list/search/history_data_store_unittest.cc',
2165 'browser/ui/app_list/search/mixer_unittest.cc', 2164 'browser/ui/app_list/search/mixer_unittest.cc',
2166 'browser/ui/app_list/search/term_break_iterator_unittest.cc', 2165 'browser/ui/app_list/search/term_break_iterator_unittest.cc',
2167 'browser/ui/app_list/search/tokenized_string_char_iterator_unittest. cc', 2166 'browser/ui/app_list/search/tokenized_string_char_iterator_unittest. cc',
2168 'browser/ui/app_list/search/tokenized_string_match_unittest.cc', 2167 'browser/ui/app_list/search/tokenized_string_match_unittest.cc',
2169 'browser/ui/app_list/search/tokenized_string_unittest.cc', 2168 'browser/ui/app_list/search/tokenized_string_unittest.cc',
2170 ], 2169 ],
2171 'dependencies': [ 2170 'dependencies': [
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
2777 }, 2776 },
2778 'sources': [ 2777 'sources': [
2779 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc', 2778 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc',
2780 ], 2779 ],
2781 'dependencies': [ 2780 'dependencies': [
2782 '../third_party/cld/cld.gyp:cld', 2781 '../third_party/cld/cld.gyp:cld',
2783 ], 2782 ],
2784 }], 2783 }],
2785 ['enable_app_list==1', { 2784 ['enable_app_list==1', {
2786 'sources': [ 2785 'sources': [
2786 'browser/ui/app_list/extension_app_model_builder_unittest.cc',
tapted 2013/11/20 11:03:25 This was just so I could test on my mac - I don't
2787 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2787 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2788 ], 2788 ],
2789 }], 2789 }],
2790 ], 2790 ],
2791 }, 2791 },
2792 { 2792 {
2793 'target_name': 'chrome_app_unittests', 2793 'target_name': 'chrome_app_unittests',
2794 'type': 'executable', 2794 'type': 'executable',
2795 'dependencies': [ 2795 'dependencies': [
2796 # unit tests should only depend on 2796 # unit tests should only depend on
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
2933 'sources': [ 2933 'sources': [
2934 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2934 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2935 ], 2935 ],
2936 }], # 'OS=="win"' 2936 }], # 'OS=="win"'
2937 ], 2937 ],
2938 }, 2938 },
2939 ], 2939 ],
2940 }], 2940 }],
2941 ], # 'conditions' 2941 ], # 'conditions'
2942 } 2942 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698