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 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "//mojo/converters/geometry", | 61 "//mojo/converters/geometry", |
62 "//mojo/converters/ime", | 62 "//mojo/converters/ime", |
63 "//mojo/converters/input_events", | 63 "//mojo/converters/input_events", |
64 "//mojo/converters/surfaces", | 64 "//mojo/converters/surfaces", |
65 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 65 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
66 "//ui/events", | 66 "//ui/events", |
67 "//ui/events/platform", | 67 "//ui/events/platform", |
68 "//ui/gfx", | 68 "//ui/gfx", |
69 "//ui/gfx/geometry", | 69 "//ui/gfx/geometry", |
70 "//ui/gl:gl", | 70 "//ui/gl:gl", |
71 "//ui/gl:test_support", | |
72 "//ui/mojo/events:interfaces", | 71 "//ui/mojo/events:interfaces", |
73 "//ui/mojo/geometry:interfaces", | 72 "//ui/mojo/geometry:interfaces", |
74 "//ui/platform_window:platform_impls", | 73 "//ui/platform_window:platform_impls", |
75 "//ui/platform_window:platform_window", | 74 "//ui/platform_window:platform_window", |
76 ] | 75 ] |
77 } | 76 } |
78 | 77 |
79 source_set("test_support") { | 78 source_set("test_support") { |
80 testonly = true | 79 testonly = true |
81 | 80 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 "//mojo/application/public/cpp:sources", | 161 "//mojo/application/public/cpp:sources", |
163 "//mojo/application/public/cpp:test_support", | 162 "//mojo/application/public/cpp:test_support", |
164 "//ui/mojo/geometry:interfaces", | 163 "//ui/mojo/geometry:interfaces", |
165 "//ui/mojo/geometry:util", | 164 "//ui/mojo/geometry:util", |
166 ] | 165 ] |
167 | 166 |
168 data_deps = [ | 167 data_deps = [ |
169 ":lib", | 168 ":lib", |
170 ] | 169 ] |
171 } | 170 } |
OLD | NEW |