| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 source_set("ui") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "base_view.cc", | 9 "base_view.cc", |
| 10 "base_view.h", | 10 "base_view.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//mojo/common", | 81 "//mojo/common", |
| 82 "//mojo/gpu", | 82 "//mojo/gpu", |
| 83 "//mojo/public/cpp/bindings", | 83 "//mojo/public/cpp/bindings", |
| 84 "//mojo/services/gfx/composition/interfaces", | 84 "//mojo/services/gfx/composition/interfaces", |
| 85 "//mojo/services/ui/views/interfaces", | 85 "//mojo/services/ui/views/interfaces", |
| 86 "//mojo/skia", | 86 "//mojo/skia", |
| 87 "//skia", | 87 "//skia", |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 | 90 |
| 91 mojo_native_application("unittests") { | 91 mojo_native_application("apptests") { |
| 92 output_name = "ui_unittests" | 92 output_name = "ui_apptests" |
| 93 | 93 |
| 94 testonly = true | 94 testonly = true |
| 95 | 95 |
| 96 sources = [ | 96 sources = [ |
| 97 "gl_renderer_unittest.cc", | 97 "gl_renderer_apptest.cc", |
| 98 ] | 98 ] |
| 99 | 99 |
| 100 deps = [ | 100 deps = [ |
| 101 ":gl", | 101 ":gl", |
| 102 ":ui", | 102 ":ui", |
| 103 "//base", | 103 "//base", |
| 104 "//mojo/application", | 104 "//mojo/application", |
| 105 "//mojo/application:test_support", | 105 "//mojo/application:test_support", |
| 106 "//mojo/gpu", | 106 "//mojo/gpu", |
| 107 "//mojo/public/cpp/bindings:callback", | 107 "//mojo/public/cpp/bindings:callback", |
| 108 "//mojo/services/geometry/interfaces", | 108 "//mojo/services/geometry/interfaces", |
| 109 "//mojo/services/gfx/composition/interfaces", | 109 "//mojo/services/gfx/composition/interfaces", |
| 110 "//testing/gtest", | 110 "//testing/gtest", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| OLD | NEW |