| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("app_list") { | 8 component("app_list") { |
| 9 sources = [ | 9 sources = [ |
| 10 "app_list_constants.cc", | 10 "app_list_constants.cc", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 testonly = true | 198 testonly = true |
| 199 | 199 |
| 200 sources = [ | 200 sources = [ |
| 201 "demo/app_list_demo_views.cc", | 201 "demo/app_list_demo_views.cc", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 deps = [ | 204 deps = [ |
| 205 ":app_list", | 205 ":app_list", |
| 206 ":test_support", | 206 ":test_support", |
| 207 "//base", | 207 "//base", |
| 208 "//build/config/sanitizers:deps", | 208 "//build/config:exe_and_shlib_deps", |
| 209 "//build/win:default_exe_manifest", | 209 "//build/win:default_exe_manifest", |
| 210 "//content", | 210 "//content", |
| 211 "//content/public/browser", | 211 "//content/public/browser", |
| 212 "//skia", | 212 "//skia", |
| 213 "//ui/base", | 213 "//ui/base", |
| 214 "//ui/events", | 214 "//ui/events", |
| 215 "//ui/resources", | 215 "//ui/resources", |
| 216 "//ui/resources:ui_test_pak", | 216 "//ui/resources:ui_test_pak", |
| 217 "//ui/views", | 217 "//ui/views", |
| 218 "//ui/views/controls/webview", | 218 "//ui/views/controls/webview", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "views/speech_view_unittest.cc", | 272 "views/speech_view_unittest.cc", |
| 273 "views/test/apps_grid_view_test_api.cc", | 273 "views/test/apps_grid_view_test_api.cc", |
| 274 "views/test/apps_grid_view_test_api.h", | 274 "views/test/apps_grid_view_test_api.h", |
| 275 ] | 275 ] |
| 276 deps += [ | 276 deps += [ |
| 277 "//ui/views", | 277 "//ui/views", |
| 278 "//ui/views:test_support", | 278 "//ui/views:test_support", |
| 279 ] | 279 ] |
| 280 } | 280 } |
| 281 } | 281 } |
| OLD | NEW |