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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 ] | 238 ] |
239 | 239 |
240 deps = [ | 240 deps = [ |
241 ":app_list", | 241 ":app_list", |
242 ":test_support", | 242 ":test_support", |
243 "//base", | 243 "//base", |
244 "//build/config/sanitizers:deps", | 244 "//build/config/sanitizers:deps", |
245 "//content", | 245 "//content", |
246 "//content/public/browser", | 246 "//content/public/browser", |
247 "//skia", | 247 "//skia", |
248 "//url", | |
249 "//ui/base", | 248 "//ui/base", |
250 "//ui/events", | 249 "//ui/events", |
251 "//ui/resources", | 250 "//ui/resources", |
252 "//ui/resources:ui_test_pak", | 251 "//ui/resources:ui_test_pak", |
253 "//ui/views", | 252 "//ui/views", |
| 253 "//ui/views/controls/webview", |
254 "//ui/views_content_client", | 254 "//ui/views_content_client", |
255 "//ui/views/controls/webview", | 255 "//url", |
256 ] | 256 ] |
257 if (is_win) { | 257 if (is_win) { |
258 configs -= [ "//build/config/win:console" ] | 258 configs -= [ "//build/config/win:console" ] |
259 configs += [ "//build/config/win:windowed" ] | 259 configs += [ "//build/config/win:windowed" ] |
260 | 260 |
261 deps += [ | 261 deps += [ |
| 262 "//content:sandbox_helper_win", |
262 "//sandbox", | 263 "//sandbox", |
263 "//content:sandbox_helper_win", | |
264 ] | 264 ] |
265 } | 265 } |
266 } | 266 } |
267 } | 267 } |
268 } | 268 } |
269 | 269 |
270 # TODO(GYP): Delete this after we've converted everything to GN. | 270 # TODO(GYP): Delete this after we've converted everything to GN. |
271 # The _run targets exist only for compatibility w/ GYP. | 271 # The _run targets exist only for compatibility w/ GYP. |
272 group("app_list_unittests_run") { | 272 group("app_list_unittests_run") { |
273 testonly = true | 273 testonly = true |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "cocoa/app_list_view_controller_unittest.mm", | 343 "cocoa/app_list_view_controller_unittest.mm", |
344 "cocoa/app_list_window_controller_unittest.mm", | 344 "cocoa/app_list_window_controller_unittest.mm", |
345 "cocoa/apps_grid_controller_unittest.mm", | 345 "cocoa/apps_grid_controller_unittest.mm", |
346 "cocoa/apps_search_box_controller_unittest.mm", | 346 "cocoa/apps_search_box_controller_unittest.mm", |
347 "cocoa/apps_search_results_controller_unittest.mm", | 347 "cocoa/apps_search_results_controller_unittest.mm", |
348 "cocoa/test/apps_grid_controller_test_helper.h", | 348 "cocoa/test/apps_grid_controller_test_helper.h", |
349 "cocoa/test/apps_grid_controller_test_helper.mm", | 349 "cocoa/test/apps_grid_controller_test_helper.mm", |
350 ] | 350 ] |
351 } | 351 } |
352 } | 352 } |
OLD | NEW |