Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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. | |
|
benwells
2013/08/29 04:49:28
\o/
koz (OOO until 15th September)
2013/08/30 00:44:50
From 6 minutes to 6 seconds!
| |
| 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', | |
| 3133 'browser/ui/app_list/fast_show_pickler_unittest.cc', | |
| 3134 ], | |
| 3135 }, | |
| 3117 ], | 3136 ], |
| 3118 } | 3137 } |
| OLD | NEW |