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

Side by Side Diff: ui/app_list/app_list.gyp

Issue 522683003: Move basic string operations to ui/app_list/search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 6 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
« no previous file with comments | « ui/app_list/BUILD.gn ('k') | ui/app_list/search/term_break_iterator.h » ('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 (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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN version: //ui/app_list 11 # GN version: //ui/app_list
12 'target_name': 'app_list', 12 'target_name': 'app_list',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '../../base/base.gyp:base', 15 '../../base/base.gyp:base',
16 '../../base/base.gyp:base_i18n', 16 '../../base/base.gyp:base_i18n',
17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
18 '../../skia/skia.gyp:skia', 18 '../../skia/skia.gyp:skia',
19 '../base/ui_base.gyp:ui_base', 19 '../base/ui_base.gyp:ui_base',
20 '../compositor/compositor.gyp:compositor', 20 '../compositor/compositor.gyp:compositor',
21 '../events/events.gyp:events_base', 21 '../events/events.gyp:events_base',
22 '../gfx/gfx.gyp:gfx', 22 '../gfx/gfx.gyp:gfx',
23 '../gfx/gfx.gyp:gfx_geometry', 23 '../gfx/gfx.gyp:gfx_geometry',
24 '../resources/ui_resources.gyp:ui_resources', 24 '../resources/ui_resources.gyp:ui_resources',
25 '../strings/ui_strings.gyp:ui_strings', 25 '../strings/ui_strings.gyp:ui_strings',
26 '../../third_party/icu/icu.gyp:icuuc',
26 ], 27 ],
27 'defines': [ 28 'defines': [
28 'APP_LIST_IMPLEMENTATION', 29 'APP_LIST_IMPLEMENTATION',
29 ], 30 ],
30 'sources': [ 31 'sources': [
31 # Note: sources list duplicated in GN build. 32 # Note: sources list duplicated in GN build.
32 'app_list_constants.cc', 33 'app_list_constants.cc',
33 'app_list_constants.h', 34 'app_list_constants.h',
34 'app_list_export.h', 35 'app_list_export.h',
35 'app_list_folder_item.cc', 36 'app_list_folder_item.cc',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'pagination_model.cc', 78 'pagination_model.cc',
78 'pagination_model.h', 79 'pagination_model.h',
79 'pagination_model_observer.h', 80 'pagination_model_observer.h',
80 'search_box_model.cc', 81 'search_box_model.cc',
81 'search_box_model.h', 82 'search_box_model.h',
82 'search_box_model_observer.h', 83 'search_box_model_observer.h',
83 'search_provider.cc', 84 'search_provider.cc',
84 'search_provider.h', 85 'search_provider.h',
85 'search_result.cc', 86 'search_result.cc',
86 'search_result.h', 87 'search_result.h',
88 'search/term_break_iterator.cc',
89 'search/term_break_iterator.h',
90 'search/tokenized_string.cc',
91 'search/tokenized_string.h',
92 'search/tokenized_string_char_iterator.cc',
93 'search/tokenized_string_char_iterator.h',
94 'search/tokenized_string_match.cc',
95 'search/tokenized_string_match.h',
87 'speech_ui_model.cc', 96 'speech_ui_model.cc',
88 'speech_ui_model.h', 97 'speech_ui_model.h',
89 'speech_ui_model_observer.h', 98 'speech_ui_model_observer.h',
90 'views/apps_container_view.cc', 99 'views/apps_container_view.cc',
91 'views/apps_container_view.h', 100 'views/apps_container_view.h',
92 'views/app_list_background.cc', 101 'views/app_list_background.cc',
93 'views/app_list_background.h', 102 'views/app_list_background.h',
94 'views/app_list_drag_and_drop_host.h', 103 'views/app_list_drag_and_drop_host.h',
95 'views/app_list_folder_view.cc', 104 'views/app_list_folder_view.cc',
96 'views/app_list_folder_view.h', 105 'views/app_list_folder_view.h',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'app_list_item_list_unittest.cc', 227 'app_list_item_list_unittest.cc',
219 'app_list_model_unittest.cc', 228 'app_list_model_unittest.cc',
220 'pagination_model_unittest.cc', 229 'pagination_model_unittest.cc',
221 'cocoa/app_list_view_controller_unittest.mm', 230 'cocoa/app_list_view_controller_unittest.mm',
222 'cocoa/app_list_window_controller_unittest.mm', 231 'cocoa/app_list_window_controller_unittest.mm',
223 'cocoa/apps_grid_controller_unittest.mm', 232 'cocoa/apps_grid_controller_unittest.mm',
224 'cocoa/apps_search_box_controller_unittest.mm', 233 'cocoa/apps_search_box_controller_unittest.mm',
225 'cocoa/apps_search_results_controller_unittest.mm', 234 'cocoa/apps_search_results_controller_unittest.mm',
226 'cocoa/test/apps_grid_controller_test_helper.h', 235 'cocoa/test/apps_grid_controller_test_helper.h',
227 'cocoa/test/apps_grid_controller_test_helper.mm', 236 'cocoa/test/apps_grid_controller_test_helper.mm',
237 'search/term_break_iterator_unittest.cc',
238 'search/tokenized_string_char_iterator_unittest.cc',
239 'search/tokenized_string_match_unittest.cc',
240 'search/tokenized_string_unittest.cc',
228 'test/run_all_unittests.cc', 241 'test/run_all_unittests.cc',
229 'views/app_list_main_view_unittest.cc', 242 'views/app_list_main_view_unittest.cc',
230 'views/app_list_view_unittest.cc', 243 'views/app_list_view_unittest.cc',
231 'views/apps_grid_view_unittest.cc', 244 'views/apps_grid_view_unittest.cc',
232 'views/folder_header_view_unittest.cc', 245 'views/folder_header_view_unittest.cc',
233 'views/search_box_view_unittest.cc', 246 'views/search_box_view_unittest.cc',
234 'views/search_result_list_view_unittest.cc', 247 'views/search_result_list_view_unittest.cc',
235 'views/speech_view_unittest.cc', 248 'views/speech_view_unittest.cc',
236 'views/test/apps_grid_view_test_api.cc', 249 'views/test/apps_grid_view_test_api.cc',
237 'views/test/apps_grid_view_test_api.h', 250 'views/test/apps_grid_view_test_api.h',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 '../../sandbox/sandbox.gyp:sandbox', 328 '../../sandbox/sandbox.gyp:sandbox',
316 '../../content/content.gyp:content_startup_helper_win', 329 '../../content/content.gyp:content_startup_helper_win',
317 ], 330 ],
318 }], 331 }],
319 ], 332 ],
320 }, 333 },
321 ], 334 ],
322 }], # toolkit_views==1 335 }], # toolkit_views==1
323 ], 336 ],
324 } 337 }
OLDNEW
« no previous file with comments | « ui/app_list/BUILD.gn ('k') | ui/app_list/search/term_break_iterator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698