| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("exo") { | 8 source_set("exo") { |
| 9 sources = [ | 9 sources = [ |
| 10 "buffer.cc", | 10 "buffer.cc", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 sources = [ | 83 sources = [ |
| 84 "test/exo_test_base.cc", | 84 "test/exo_test_base.cc", |
| 85 "test/exo_test_base.h", | 85 "test/exo_test_base.h", |
| 86 "test/exo_test_helper.cc", | 86 "test/exo_test_helper.cc", |
| 87 "test/exo_test_helper.h", | 87 "test/exo_test_helper.h", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 ":exo", | 91 ":exo", |
| 92 "//ash/public/cpp", |
| 92 "//ash/test:ash_with_aura_test_support", | 93 "//ash/test:ash_with_aura_test_support", |
| 93 "//ash/test:test_support_without_content", | 94 "//ash/test:test_support_without_content", |
| 94 "//base", | 95 "//base", |
| 95 "//gpu", | 96 "//gpu", |
| 96 "//skia", | 97 "//skia", |
| 97 "//testing/gtest", | 98 "//testing/gtest", |
| 98 "//ui/aura", | 99 "//ui/aura", |
| 99 "//ui/compositor", | 100 "//ui/compositor", |
| 100 "//ui/gfx/geometry", | 101 "//ui/gfx/geometry", |
| 102 "//ui/views", |
| 101 "//ui/wm:wm", | 103 "//ui/wm:wm", |
| 102 ] | 104 ] |
| 103 } | 105 } |
| 104 | 106 |
| 105 source_set("unit_tests") { | 107 source_set("unit_tests") { |
| 106 testonly = true | 108 testonly = true |
| 107 | 109 |
| 108 sources = [ | 110 sources = [ |
| 109 "buffer_unittest.cc", | 111 "buffer_unittest.cc", |
| 110 "display_unittest.cc", | 112 "display_unittest.cc", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 data_deps = [ | 168 data_deps = [ |
| 167 "//ash/common/strings:ash_test_strings", | 169 "//ash/common/strings:ash_test_strings", |
| 168 "//ash/resources:ash_test_resources_100_percent", | 170 "//ash/resources:ash_test_resources_100_percent", |
| 169 "//ash/resources:ash_test_resources_200_percent", | 171 "//ash/resources:ash_test_resources_200_percent", |
| 170 ] | 172 ] |
| 171 | 173 |
| 172 if (is_linux) { | 174 if (is_linux) { |
| 173 deps += [ "//components/exo/wayland:unit_tests" ] | 175 deps += [ "//components/exo/wayland:unit_tests" ] |
| 174 } | 176 } |
| 175 } | 177 } |
| OLD | NEW |