| 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("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//mojo/converters/geometry", | 157 "//mojo/converters/geometry", |
| 158 "//mojo/shell/public/cpp:sources", | 158 "//mojo/shell/public/cpp:sources", |
| 159 "//mojo/shell/public/cpp:test_support", | 159 "//mojo/shell/public/cpp:test_support", |
| 160 "//ui/mojo/geometry:interfaces", | 160 "//ui/mojo/geometry:interfaces", |
| 161 "//ui/mojo/geometry:util", | 161 "//ui/mojo/geometry:util", |
| 162 ] | 162 ] |
| 163 | 163 |
| 164 data_deps = [ | 164 data_deps = [ |
| 165 ":wm", | 165 ":wm", |
| 166 ] | 166 ] |
| 167 |
| 168 if (use_x11) { |
| 169 deps += [ "//tools/xdisplaycheck" ] |
| 170 } |
| 167 } | 171 } |
| 168 | 172 |
| 169 source_set("unittests") { | 173 source_set("unittests") { |
| 170 testonly = true | 174 testonly = true |
| 171 | 175 |
| 172 sources = [ | 176 sources = [ |
| 173 "frame/move_loop_unittest.cc", | 177 "frame/move_loop_unittest.cc", |
| 174 "layout_manager_unittest.cc", | 178 "layout_manager_unittest.cc", |
| 175 ] | 179 ] |
| 176 | 180 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 188 "//testing/gtest", | 192 "//testing/gtest", |
| 189 "//third_party/mojo/src/mojo/edk/system", | 193 "//third_party/mojo/src/mojo/edk/system", |
| 190 "//ui/base", | 194 "//ui/base", |
| 191 "//ui/events", | 195 "//ui/events", |
| 192 "//ui/gfx:test_support", | 196 "//ui/gfx:test_support", |
| 193 "//ui/gfx/geometry", | 197 "//ui/gfx/geometry", |
| 194 "//ui/mojo/geometry:interfaces", | 198 "//ui/mojo/geometry:interfaces", |
| 195 "//ui/mojo/geometry:util", | 199 "//ui/mojo/geometry:util", |
| 196 ] | 200 ] |
| 197 } | 201 } |
| OLD | NEW |