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

Side by Side Diff: ash/ash.gyp

Issue 1830293002: AppListController refactoring part 1: AppListShower implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: AppListShower to new component: //ui/app_list/shower, GetViewDelegate() in GetViewDelegate(). Created 4 years, 8 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'ash_sources': [ 9 'ash_sources': [
10 'accelerators/accelerator_commands.cc', 10 'accelerators/accelerator_commands.cc',
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 '../components/components.gyp:signin_core_account_id', 966 '../components/components.gyp:signin_core_account_id',
967 '../components/components.gyp:user_manager', 967 '../components/components.gyp:user_manager',
968 '../components/components.gyp:wallpaper', 968 '../components/components.gyp:wallpaper',
969 '../media/media.gyp:media', 969 '../media/media.gyp:media',
970 '../net/net.gyp:net', 970 '../net/net.gyp:net',
971 '../skia/skia.gyp:skia', 971 '../skia/skia.gyp:skia',
972 '../third_party/icu/icu.gyp:icui18n', 972 '../third_party/icu/icu.gyp:icui18n',
973 '../third_party/icu/icu.gyp:icuuc', 973 '../third_party/icu/icu.gyp:icuuc',
974 '../ui/accessibility/accessibility.gyp:accessibility', 974 '../ui/accessibility/accessibility.gyp:accessibility',
975 '../ui/app_list/app_list.gyp:app_list', 975 '../ui/app_list/app_list.gyp:app_list',
976 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower',
976 '../ui/aura/aura.gyp:aura', 977 '../ui/aura/aura.gyp:aura',
977 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 978 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
978 '../ui/base/ui_base.gyp:ui_base', 979 '../ui/base/ui_base.gyp:ui_base',
979 '../ui/base/ui_base.gyp:ui_data_pack', 980 '../ui/base/ui_base.gyp:ui_data_pack',
980 '../ui/compositor/compositor.gyp:compositor', 981 '../ui/compositor/compositor.gyp:compositor',
981 '../ui/events/devices/events_devices.gyp:events_devices', 982 '../ui/events/devices/events_devices.gyp:events_devices',
982 '../ui/events/events.gyp:events', 983 '../ui/events/events.gyp:events',
983 '../ui/events/events.gyp:events_base', 984 '../ui/events/events.gyp:events_base',
984 '../ui/events/events.gyp:gesture_detection', 985 '../ui/events/events.gyp:gesture_detection',
985 '../ui/events/platform/events_platform.gyp:events_platform', 986 '../ui/events/platform/events_platform.gyp:events_platform',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1100 }, 1101 },
1101 { 1102 {
1102 # GN version: //ash:test_support 1103 # GN version: //ash:test_support
1103 'target_name': 'ash_test_support', 1104 'target_name': 'ash_test_support',
1104 'type': 'static_library', 1105 'type': 'static_library',
1105 'dependencies': [ 1106 'dependencies': [
1106 '../skia/skia.gyp:skia', 1107 '../skia/skia.gyp:skia',
1107 '../testing/gtest.gyp:gtest', 1108 '../testing/gtest.gyp:gtest',
1108 '../ui/accessibility/accessibility.gyp:ax_gen', 1109 '../ui/accessibility/accessibility.gyp:ax_gen',
1109 '../ui/app_list/app_list.gyp:app_list_test_support', 1110 '../ui/app_list/app_list.gyp:app_list_test_support',
1111 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower',
1110 '../ui/events/devices/events_devices.gyp:events_devices', 1112 '../ui/events/devices/events_devices.gyp:events_devices',
1111 '../ui/views/views.gyp:views_test_support', 1113 '../ui/views/views.gyp:views_test_support',
1112 'ash', 1114 'ash',
1113 'ash_resources.gyp:ash_resources', 1115 'ash_resources.gyp:ash_resources',
1114 'ash_test_support_with_content', 1116 'ash_test_support_with_content',
1115 ], 1117 ],
1116 'sources': [ 1118 'sources': [
1117 '<@(ash_test_support_sources)', 1119 '<@(ash_test_support_sources)',
1118 ], 1120 ],
1119 'conditions': [ 1121 'conditions': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 '../components/components.gyp:signin_core_account_id', 1164 '../components/components.gyp:signin_core_account_id',
1163 '../components/components.gyp:user_manager', 1165 '../components/components.gyp:user_manager',
1164 '../content/content.gyp:content_browser', 1166 '../content/content.gyp:content_browser',
1165 '../content/content_shell_and_tests.gyp:test_support_content', 1167 '../content/content_shell_and_tests.gyp:test_support_content',
1166 '../skia/skia.gyp:skia', 1168 '../skia/skia.gyp:skia',
1167 '../testing/gtest.gyp:gtest', 1169 '../testing/gtest.gyp:gtest',
1168 '../third_party/icu/icu.gyp:icui18n', 1170 '../third_party/icu/icu.gyp:icui18n',
1169 '../third_party/icu/icu.gyp:icuuc', 1171 '../third_party/icu/icu.gyp:icuuc',
1170 '../ui/accessibility/accessibility.gyp:accessibility', 1172 '../ui/accessibility/accessibility.gyp:accessibility',
1171 '../ui/app_list/app_list.gyp:app_list', 1173 '../ui/app_list/app_list.gyp:app_list',
1174 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower',
1172 '../ui/aura/aura.gyp:aura', 1175 '../ui/aura/aura.gyp:aura',
1173 '../ui/aura/aura.gyp:aura_test_support', 1176 '../ui/aura/aura.gyp:aura_test_support',
1174 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 1177 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
1175 '../ui/base/ui_base.gyp:ui_base', 1178 '../ui/base/ui_base.gyp:ui_base',
1176 '../ui/base/ui_base.gyp:ui_base_test_support', 1179 '../ui/base/ui_base.gyp:ui_base_test_support',
1177 '../ui/compositor/compositor.gyp:compositor', 1180 '../ui/compositor/compositor.gyp:compositor',
1178 '../ui/compositor/compositor.gyp:compositor_test_support', 1181 '../ui/compositor/compositor.gyp:compositor_test_support',
1179 '../ui/events/devices/events_devices.gyp:events_devices', 1182 '../ui/events/devices/events_devices.gyp:events_devices',
1180 '../ui/events/events.gyp:events', 1183 '../ui/events/events.gyp:events',
1181 '../ui/events/events.gyp:events_test_support', 1184 '../ui/events/events.gyp:events_test_support',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 'target_name': 'ash_shell_lib', 1264 'target_name': 'ash_shell_lib',
1262 'type': 'static_library', 1265 'type': 'static_library',
1263 'dependencies': [ 1266 'dependencies': [
1264 '../base/base.gyp:base', 1267 '../base/base.gyp:base',
1265 '../base/base.gyp:base_i18n', 1268 '../base/base.gyp:base_i18n',
1266 '../chrome/chrome_resources.gyp:packed_resources', 1269 '../chrome/chrome_resources.gyp:packed_resources',
1267 '../skia/skia.gyp:skia', 1270 '../skia/skia.gyp:skia',
1268 '../third_party/icu/icu.gyp:icui18n', 1271 '../third_party/icu/icu.gyp:icui18n',
1269 '../third_party/icu/icu.gyp:icuuc', 1272 '../third_party/icu/icu.gyp:icuuc',
1270 '../ui/app_list/app_list.gyp:app_list', 1273 '../ui/app_list/app_list.gyp:app_list',
1274 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower',
1271 '../ui/aura/aura.gyp:aura', 1275 '../ui/aura/aura.gyp:aura',
1272 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 1276 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
1273 '../ui/base/ui_base.gyp:ui_base', 1277 '../ui/base/ui_base.gyp:ui_base',
1274 '../ui/compositor/compositor.gyp:compositor', 1278 '../ui/compositor/compositor.gyp:compositor',
1275 '../ui/events/events.gyp:events', 1279 '../ui/events/events.gyp:events',
1276 '../ui/gfx/gfx.gyp:gfx', 1280 '../ui/gfx/gfx.gyp:gfx',
1277 '../ui/gfx/gfx.gyp:gfx_geometry', 1281 '../ui/gfx/gfx.gyp:gfx_geometry',
1278 '../ui/keyboard/keyboard.gyp:keyboard', 1282 '../ui/keyboard/keyboard.gyp:keyboard',
1279 '../ui/keyboard/keyboard.gyp:keyboard_with_content', 1283 '../ui/keyboard/keyboard.gyp:keyboard_with_content',
1280 '../ui/message_center/message_center.gyp:message_center', 1284 '../ui/message_center/message_center.gyp:message_center',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1370 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1367 ], 1371 ],
1368 } 1372 }
1369 ], 1373 ],
1370 ], 1374 ],
1371 }, 1375 },
1372 ], 1376 ],
1373 }], 1377 }],
1374 ], 1378 ],
1375 } 1379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698