| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 mojo_native_application("jank") { | 7 mojo_native_application("jank") { |
| 8 output_name = "jank_view" | 8 output_name = "jank_view" |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "jank.cc", | 11 "jank.cc", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 "//base", | 15 "//base", |
| 16 "//mojo/application", | 16 "//mojo/application", |
| 17 "//mojo/environment:chromium", | 17 "//mojo/environment:chromium", |
| 18 "//mojo/gpu", | 18 "//mojo/gpu", |
| 19 "//mojo/public/c/gpu", | 19 "//mojo/public/c:gpu", |
| 20 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
| 21 "//mojo/services/geometry/interfaces", | 21 "//mojo/services/geometry/interfaces", |
| 22 "//mojo/services/gfx/composition/interfaces", | 22 "//mojo/services/gfx/composition/interfaces", |
| 23 "//mojo/services/ui/input/interfaces", | 23 "//mojo/services/ui/input/interfaces", |
| 24 "//mojo/services/ui/views/interfaces", | 24 "//mojo/services/ui/views/interfaces", |
| 25 "//mojo/skia", | 25 "//mojo/skia", |
| 26 "//mojo/ui", | 26 "//mojo/ui", |
| 27 "//mojo/ui:content", | 27 "//mojo/ui:content", |
| 28 "//mojo/ui:ganesh", | 28 "//mojo/ui:ganesh", |
| 29 "//mojo/ui:gl", | 29 "//mojo/ui:gl", |
| 30 "//skia", | 30 "//skia", |
| 31 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", | 31 "//third_party/dejavu-fonts-ttf-2.34:DejaVuSansMonoRegular", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| OLD | NEW |