| 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 source_set("unittest_support") { | 8 source_set("unittest_support") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 ":unittest_support", | 62 ":unittest_support", |
| 63 "//base", | 63 "//base", |
| 64 "//base/test:test_support", | 64 "//base/test:test_support", |
| 65 "//components/mus/common:mus_common", | 65 "//components/mus/common:mus_common", |
| 66 "//components/mus/public/cpp", | 66 "//components/mus/public/cpp", |
| 67 "//mojo/common:common_base", | 67 "//mojo/common:common_base", |
| 68 "//mojo/converters/geometry", | 68 "//mojo/converters/geometry", |
| 69 "//mojo/converters/input_events", | 69 "//mojo/converters/input_events", |
| 70 "//mojo/edk/system", | 70 "//mojo/edk/system", |
| 71 "//mojo/gles2", | 71 "//mojo/gles2", |
| 72 "//mojo/platform_handle:platform_handle_impl", | |
| 73 "//mojo/public/cpp/system", | 72 "//mojo/public/cpp/system", |
| 74 "//services/shell/public/cpp", | 73 "//services/shell/public/cpp", |
| 75 "//testing/gtest", | 74 "//testing/gtest", |
| 76 "//ui/events", | 75 "//ui/events", |
| 77 "//ui/gfx:test_support", | 76 "//ui/gfx:test_support", |
| 78 "//ui/gfx/geometry", | 77 "//ui/gfx/geometry", |
| 79 "//ui/mojo/geometry:interfaces", | 78 "//ui/mojo/geometry:interfaces", |
| 80 ] | 79 ] |
| 81 | 80 |
| 82 if (use_x11) { | 81 if (use_x11) { |
| 83 deps += [ "//ui/gfx/x" ] | 82 deps += [ "//ui/gfx/x" ] |
| 84 } | 83 } |
| 85 } | 84 } |
| OLD | NEW |