| 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", |
| 71 "//ui/mojo/events:interfaces", | 72 "//ui/mojo/events:interfaces", |
| 72 "//ui/mojo/geometry:interfaces", | 73 "//ui/mojo/geometry:interfaces", |
| 73 "//ui/platform_window:platform_impls", | 74 "//ui/platform_window:platform_impls", |
| 74 "//ui/platform_window:platform_window", | 75 "//ui/platform_window:platform_window", |
| 75 ] | 76 ] |
| 76 } | 77 } |
| 77 | 78 |
| 78 source_set("test_support") { | 79 source_set("test_support") { |
| 79 testonly = true | 80 testonly = true |
| 80 | 81 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "//mojo/application/public/cpp:sources", | 162 "//mojo/application/public/cpp:sources", |
| 162 "//mojo/application/public/cpp:test_support", | 163 "//mojo/application/public/cpp:test_support", |
| 163 "//ui/mojo/geometry:interfaces", | 164 "//ui/mojo/geometry:interfaces", |
| 164 "//ui/mojo/geometry:util", | 165 "//ui/mojo/geometry:util", |
| 165 ] | 166 ] |
| 166 | 167 |
| 167 data_deps = [ | 168 data_deps = [ |
| 168 ":lib", | 169 ":lib", |
| 169 ] | 170 ] |
| 170 } | 171 } |
| OLD | NEW |