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 sources = [ | 9 sources = [ |
10 "test_window.h", | 10 "test_window.h", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 deps = [ | 48 deps = [ |
49 ":unittest_support", | 49 ":unittest_support", |
50 "//base", | 50 "//base", |
51 "//base/test:test_support", | 51 "//base/test:test_support", |
52 "//components/mus/public/cpp", | 52 "//components/mus/public/cpp", |
53 "//mojo/application/public/cpp", | 53 "//mojo/application/public/cpp", |
54 "//mojo/converters/geometry", | 54 "//mojo/converters/geometry", |
55 "//mojo/gles2", | 55 "//mojo/gles2", |
56 "//mojo/platform_handle:platform_handle_impl", | 56 "//mojo/platform_handle:platform_handle_impl", |
| 57 "//mojo/public/cpp/system", |
57 "//testing/gtest", | 58 "//testing/gtest", |
58 "//third_party/mojo/src/mojo/public/cpp/system", | |
59 "//third_party/mojo/src/mojo/edk/system", | 59 "//third_party/mojo/src/mojo/edk/system", |
60 "//ui/gfx:test_support", | 60 "//ui/gfx:test_support", |
61 "//ui/gfx/geometry", | 61 "//ui/gfx/geometry", |
62 "//ui/mojo/geometry:interfaces", | 62 "//ui/mojo/geometry:interfaces", |
63 ] | 63 ] |
64 | 64 |
65 if (use_x11) { | 65 if (use_x11) { |
66 deps += [ "//ui/gfx/x" ] | 66 deps += [ "//ui/gfx/x" ] |
67 } | 67 } |
68 } | 68 } |
OLD | NEW |