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 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1018 testonly = true | 1018 testonly = true |
1019 sources = [ | 1019 sources = [ |
1020 "test/ash_test_impl_aura.cc", | 1020 "test/ash_test_impl_aura.cc", |
1021 "test/ash_test_impl_aura.h", | 1021 "test/ash_test_impl_aura.h", |
1022 ] | 1022 ] |
1023 deps = [ | 1023 deps = [ |
1024 ":ash", | 1024 ":ash", |
1025 ":test_support_common", | 1025 ":test_support_common", |
1026 "//base", | 1026 "//base", |
1027 "//skia", | 1027 "//skia", |
| 1028 "//ui/aura:test_support", |
1028 "//ui/display", | 1029 "//ui/display", |
| 1030 "//ui/wm", |
1029 ] | 1031 ] |
1030 } | 1032 } |
1031 | 1033 |
1032 # Internal target consumed by |test_support_with_content| and | 1034 # Internal target consumed by |test_support_with_content| and |
1033 # |test_support_without_content|. This target contains all the test support | 1035 # |test_support_without_content|. This target contains all the test support |
1034 # files, with the exception of an implementation of AshTestEnvironment. | 1036 # files, with the exception of an implementation of AshTestEnvironment. |
1035 # Consumers of ash should use one of |test_support_with_content| or | 1037 # Consumers of ash should use one of |test_support_with_content| or |
1036 # |test_support_without_content|. | 1038 # |test_support_without_content|. |
1037 static_library("test_support_common") { | 1039 static_library("test_support_common") { |
1038 testonly = true | 1040 testonly = true |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1686 if (is_win) { | 1688 if (is_win) { |
1687 configs -= [ "//build/config/win:console" ] | 1689 configs -= [ "//build/config/win:console" ] |
1688 configs += [ "//build/config/win:windowed" ] | 1690 configs += [ "//build/config/win:windowed" ] |
1689 deps += [ "//sandbox" ] | 1691 deps += [ "//sandbox" ] |
1690 } | 1692 } |
1691 | 1693 |
1692 if (is_chromeos) { | 1694 if (is_chromeos) { |
1693 deps += [ "//device/bluetooth" ] | 1695 deps += [ "//device/bluetooth" ] |
1694 } | 1696 } |
1695 } | 1697 } |
OLD | NEW |