| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 executable("ash_shell_with_content") { | 456 executable("ash_shell_with_content") { |
| 457 testonly = true | 457 testonly = true |
| 458 sources = [ | 458 sources = [ |
| 459 "shell/content/shell_with_content_main.cc", | 459 "shell/content/shell_with_content_main.cc", |
| 460 ] | 460 ] |
| 461 | 461 |
| 462 deps = [ | 462 deps = [ |
| 463 ":ash_shell_lib_with_content", | 463 ":ash_shell_lib_with_content", |
| 464 "//base", | 464 "//base", |
| 465 "//build/config/sanitizers:deps", | 465 "//build/config/sanitizers:deps", |
| 466 "//build/win:default_exe_manifest", |
| 466 "//components/user_manager", | 467 "//components/user_manager", |
| 467 "//content", | 468 "//content", |
| 468 "//content/public/app:both", | 469 "//content/public/app:both", |
| 469 ] | 470 ] |
| 470 | 471 |
| 471 data_deps = [ | 472 data_deps = [ |
| 472 "//ash/strings:ash_test_strings", | 473 "//ash/strings:ash_test_strings", |
| 473 "//ash/resources:ash_test_resources_100_percent", | 474 "//ash/resources:ash_test_resources_100_percent", |
| 474 "//ash/resources:ash_test_resources_200_percent", | 475 "//ash/resources:ash_test_resources_200_percent", |
| 475 ] | 476 ] |
| 476 | 477 |
| 477 if (is_win) { | 478 if (is_win) { |
| 478 configs -= [ "//build/config/win:console" ] | 479 configs -= [ "//build/config/win:console" ] |
| 479 configs += [ "//build/config/win:windowed" ] | 480 configs += [ "//build/config/win:windowed" ] |
| 480 deps += [ "//sandbox" ] | 481 deps += [ "//sandbox" ] |
| 481 } | 482 } |
| 482 | 483 |
| 483 if (is_chromeos) { | 484 if (is_chromeos) { |
| 484 deps += [ "//device/bluetooth" ] | 485 deps += [ "//device/bluetooth" ] |
| 485 } | 486 } |
| 486 } | 487 } |
| 487 # When adding support for isolates, please have a look at run-time dependencies | 488 # When adding support for isolates, please have a look at run-time dependencies |
| 488 # in the ash_unittests_run target in ash.gyp. | 489 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |