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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 23684003: Introduce FastShowPickler which will be used for app list cold start. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments Created 7 years, 3 months 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
« no previous file with comments | « chrome/browser/ui/app_list/fast_show_pickler_unittest.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser_ui', 8 'target_name': 'browser_ui',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'browser/ui/android/tab_model/tab_model.h', 101 'browser/ui/android/tab_model/tab_model.h',
102 'browser/ui/android/tab_model/tab_model_list.cc', 102 'browser/ui/android/tab_model/tab_model_list.cc',
103 'browser/ui/android/tab_model/tab_model_list.h', 103 'browser/ui/android/tab_model/tab_model_list.h',
104 'browser/ui/android/tab_restore_service_delegate_android.cc', 104 'browser/ui/android/tab_restore_service_delegate_android.cc',
105 'browser/ui/android/validation_message_bubble_android.h', 105 'browser/ui/android/validation_message_bubble_android.h',
106 'browser/ui/android/validation_message_bubble_android.cc', 106 'browser/ui/android/validation_message_bubble_android.cc',
107 'browser/ui/android/website_settings_popup_android.cc', 107 'browser/ui/android/website_settings_popup_android.cc',
108 'browser/ui/android/website_settings_popup_android.h', 108 'browser/ui/android/website_settings_popup_android.h',
109 'browser/ui/android/window_android_helper.cc', 109 'browser/ui/android/window_android_helper.cc',
110 'browser/ui/android/window_android_helper.h', 110 'browser/ui/android/window_android_helper.h',
111 'browser/ui/app_list/fast_show_pickler.cc',
112 'browser/ui/app_list/fast_show_pickler.h',
111 'browser/ui/app_list/app_context_menu.cc', 113 'browser/ui/app_list/app_context_menu.cc',
112 'browser/ui/app_list/app_context_menu.h', 114 'browser/ui/app_list/app_context_menu.h',
113 'browser/ui/app_list/app_context_menu_delegate.h', 115 'browser/ui/app_list/app_context_menu_delegate.h',
114 'browser/ui/app_list/app_list_controller_delegate.cc', 116 'browser/ui/app_list/app_list_controller_delegate.cc',
115 'browser/ui/app_list/app_list_controller_delegate.h', 117 'browser/ui/app_list/app_list_controller_delegate.h',
116 'browser/ui/app_list/app_list_service.cc', 118 'browser/ui/app_list/app_list_service.cc',
117 'browser/ui/app_list/app_list_service.h', 119 'browser/ui/app_list/app_list_service.h',
118 'browser/ui/app_list/app_list_service_ash.h', 120 'browser/ui/app_list/app_list_service_ash.h',
119 'browser/ui/app_list/app_list_service_disabled.cc', 121 'browser/ui/app_list/app_list_service_disabled.cc',
120 'browser/ui/app_list/app_list_service_impl.cc', 122 'browser/ui/app_list/app_list_service_impl.cc',
(...skipping 2986 matching lines...) Expand 10 before | Expand all | Expand 10 after
3107 ['enable_mdns==1', { 3109 ['enable_mdns==1', {
3108 'sources': [ 3110 'sources': [
3109 'browser/ui/webui/local_discovery/local_discovery_ui.cc', 3111 'browser/ui/webui/local_discovery/local_discovery_ui.cc',
3110 'browser/ui/webui/local_discovery/local_discovery_ui.h', 3112 'browser/ui/webui/local_discovery/local_discovery_ui.h',
3111 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc', 3113 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc',
3112 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h', 3114 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h',
3113 ], 3115 ],
3114 }], 3116 }],
3115 ], 3117 ],
3116 }, 3118 },
3119 {
3120 # Unit tests for chrome app list, not run on any bots, this is for faster
3121 # compile/link/test cycles during development.
3122 'target_name': 'chrome_app_list_unit_tests',
3123 'type': '<(gtest_target_type)',
3124 'dependencies': [
3125 '../skia/skia.gyp:skia',
3126 '../testing/gtest.gyp:gtest',
3127 '../ui/app_list/app_list.gyp:app_list',
3128 'apps',
3129 'browser_ui',
3130 ],
3131 'sources': [
3132 'browser/ui/app_list/chrome_app_list_unit_tests.cc',
tapted 2013/08/30 01:13:35 Drive-by: should this go in a test subfolder. I.e.
koz (OOO until 15th September) 2013/08/30 05:54:23 Ooh, thanks for the suggestion Trent. It seems tha
3133 'browser/ui/app_list/fast_show_pickler_unittest.cc',
3134 ],
3135 },
3117 ], 3136 ],
3118 } 3137 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/fast_show_pickler_unittest.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698