| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 component("app_list") { | 7 component("app_list") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app_list_constants.cc", | 9 "app_list_constants.cc", |
| 10 "app_list_constants.h", | 10 "app_list_constants.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "pagination_model.cc", | 31 "pagination_model.cc", |
| 32 "pagination_model.h", | 32 "pagination_model.h", |
| 33 "pagination_model_observer.h", | 33 "pagination_model_observer.h", |
| 34 "search_box_model.cc", | 34 "search_box_model.cc", |
| 35 "search_box_model.h", | 35 "search_box_model.h", |
| 36 "search_box_model_observer.h", | 36 "search_box_model_observer.h", |
| 37 "search_provider.cc", | 37 "search_provider.cc", |
| 38 "search_provider.h", | 38 "search_provider.h", |
| 39 "search_result.cc", | 39 "search_result.cc", |
| 40 "search_result.h", | 40 "search_result.h", |
| 41 "search/term_break_iterator.cc", |
| 42 "search/term_break_iterator.h", |
| 43 "search/tokenized_string.cc", |
| 44 "search/tokenized_string.h", |
| 45 "search/tokenized_string_char_iterator.cc", |
| 46 "search/tokenized_string_char_iterator.h", |
| 47 "search/tokenized_string_match.cc", |
| 48 "search/tokenized_string_match.h", |
| 41 "speech_ui_model.cc", | 49 "speech_ui_model.cc", |
| 42 "speech_ui_model.h", | 50 "speech_ui_model.h", |
| 43 "speech_ui_model_observer.h", | 51 "speech_ui_model_observer.h", |
| 44 ] | 52 ] |
| 45 | 53 |
| 46 defines = [ "APP_LIST_IMPLEMENTATION" ] | 54 defines = [ "APP_LIST_IMPLEMENTATION" ] |
| 47 | 55 |
| 48 deps = [ | 56 deps = [ |
| 49 "//base", | 57 "//base", |
| 50 "//base:i18n", | 58 "//base:i18n", |
| 51 "//base/third_party/dynamic_annotations", | 59 "//base/third_party/dynamic_annotations", |
| 52 "//skia", | 60 "//skia", |
| 61 "//third_party/icu", |
| 53 "//ui/accessibility", | 62 "//ui/accessibility", |
| 54 "//ui/base", | 63 "//ui/base", |
| 55 "//ui/compositor", | 64 "//ui/compositor", |
| 56 "//ui/events:events_base", | 65 "//ui/events:events_base", |
| 57 "//ui/gfx", | 66 "//ui/gfx", |
| 58 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
| 59 "//ui/resources", | 68 "//ui/resources", |
| 60 "//ui/strings", | 69 "//ui/strings", |
| 61 ] | 70 ] |
| 62 | 71 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "cocoa/apps_search_results_controller.h", | 160 "cocoa/apps_search_results_controller.h", |
| 152 "cocoa/apps_search_results_controller.mm", | 161 "cocoa/apps_search_results_controller.mm", |
| 153 "cocoa/apps_search_results_model_bridge.h", | 162 "cocoa/apps_search_results_model_bridge.h", |
| 154 "cocoa/apps_search_results_model_bridge.mm", | 163 "cocoa/apps_search_results_model_bridge.mm", |
| 155 "cocoa/item_drag_controller.h", | 164 "cocoa/item_drag_controller.h", |
| 156 "cocoa/item_drag_controller.mm", | 165 "cocoa/item_drag_controller.mm", |
| 157 "cocoa/scroll_view_with_no_scrollbars.h", | 166 "cocoa/scroll_view_with_no_scrollbars.h", |
| 158 "cocoa/scroll_view_with_no_scrollbars.mm", | 167 "cocoa/scroll_view_with_no_scrollbars.mm", |
| 159 ] | 168 ] |
| 160 deps += [ | 169 deps += [ |
| 161 #'../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:goog
le_toolbox_for_mac', TODO(GYP) | 170 #"../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:goog
le_toolbox_for_mac", TODO(GYP) |
| 162 ] | 171 ] |
| 163 libs = [ "QuartzCore.framework" ] | 172 libs = [ "QuartzCore.framework" ] |
| 164 } | 173 } |
| 165 } | 174 } |
| 166 | 175 |
| 167 static_library("test_support") { | 176 static_library("test_support") { |
| 168 sources = [ | 177 sources = [ |
| 169 "test/app_list_test_model.cc", | 178 "test/app_list_test_model.cc", |
| 170 "test/app_list_test_model.h", | 179 "test/app_list_test_model.h", |
| 171 "test/app_list_test_view_delegate.cc", | 180 "test/app_list_test_view_delegate.cc", |
| 172 "test/app_list_test_view_delegate.h", | 181 "test/app_list_test_view_delegate.h", |
| 173 ] | 182 ] |
| 174 | 183 |
| 175 deps = [ | 184 deps = [ |
| 176 ":app_list", | 185 ":app_list", |
| 177 "//base", | 186 "//base", |
| 178 "//ui/gfx", | 187 "//ui/gfx", |
| 179 "//ui/gfx/geometry", | 188 "//ui/gfx/geometry", |
| 180 "//ui/resources", | 189 "//ui/resources", |
| 181 ] | 190 ] |
| 182 } | 191 } |
| 183 | 192 |
| 184 test("app_list_unittests") { | 193 test("app_list_unittests") { |
| 185 sources = [ | 194 sources = [ |
| 186 "app_list_item_list_unittest.cc", | 195 "app_list_item_list_unittest.cc", |
| 187 "app_list_model_unittest.cc", | 196 "app_list_model_unittest.cc", |
| 188 "pagination_model_unittest.cc", | 197 "pagination_model_unittest.cc", |
| 198 "search/term_break_iterator_unittest.cc", |
| 199 "search/tokenized_string_char_iterator_unittest.cc", |
| 200 "search/tokenized_string_match_unittest.cc", |
| 201 "search/tokenized_string_unittest.cc", |
| 189 "test/run_all_unittests.cc", | 202 "test/run_all_unittests.cc", |
| 190 ] | 203 ] |
| 191 | 204 |
| 192 deps = [ | 205 deps = [ |
| 193 ":app_list", | 206 ":app_list", |
| 194 ":test_support", | 207 ":test_support", |
| 195 "//base", | 208 "//base", |
| 196 "//base/test:test_support", | 209 "//base/test:test_support", |
| 197 "//skia", | 210 "//skia", |
| 198 "//testing/gtest", | 211 "//testing/gtest", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 227 "cocoa/app_list_view_controller_unittest.mm", | 240 "cocoa/app_list_view_controller_unittest.mm", |
| 228 "cocoa/app_list_window_controller_unittest.mm", | 241 "cocoa/app_list_window_controller_unittest.mm", |
| 229 "cocoa/apps_grid_controller_unittest.mm", | 242 "cocoa/apps_grid_controller_unittest.mm", |
| 230 "cocoa/apps_search_box_controller_unittest.mm", | 243 "cocoa/apps_search_box_controller_unittest.mm", |
| 231 "cocoa/apps_search_results_controller_unittest.mm", | 244 "cocoa/apps_search_results_controller_unittest.mm", |
| 232 "cocoa/test/apps_grid_controller_test_helper.h", | 245 "cocoa/test/apps_grid_controller_test_helper.h", |
| 233 "cocoa/test/apps_grid_controller_test_helper.mm", | 246 "cocoa/test/apps_grid_controller_test_helper.mm", |
| 234 ] | 247 ] |
| 235 } | 248 } |
| 236 } | 249 } |
| OLD | NEW |