| 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", |
| 11 "choreographer.cc", | 11 "choreographer.cc", |
| 12 "choreographer.h", | 12 "choreographer.h", |
| 13 "input_handler.cc", | 13 "input_handler.cc", |
| 14 "input_handler.h", | 14 "input_handler.h", |
| 15 "view_provider_app.cc", | 15 "view_provider_app.cc", |
| 16 "view_provider_app.h", | 16 "view_provider_app.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//mojo/application", | 21 "//mojo/application", |
| 22 "//mojo/common", | 22 "//mojo/common", |
| 23 "//mojo/public/cpp/bindings", | 23 "//mojo/public/cpp/bindings", |
| 24 "//mojo/public/interfaces/application", | 24 "//mojo/public/interfaces/application", |
| 25 "//mojo/services/gfx/composition/cpp", |
| 25 "//mojo/services/gfx/composition/interfaces", | 26 "//mojo/services/gfx/composition/interfaces", |
| 26 "//mojo/services/ui/input/interfaces", | 27 "//mojo/services/ui/input/interfaces", |
| 27 "//mojo/services/ui/views/interfaces", | 28 "//mojo/services/ui/views/interfaces", |
| 28 ] | 29 ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 source_set("content") { | 32 source_set("content") { |
| 32 sources = [ | 33 sources = [ |
| 33 "content_viewer_app.cc", | 34 "content_viewer_app.cc", |
| 34 "content_viewer_app.h", | 35 "content_viewer_app.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//base", | 106 "//base", |
| 106 "//mojo/application", | 107 "//mojo/application", |
| 107 "//mojo/application:test_support", | 108 "//mojo/application:test_support", |
| 108 "//mojo/gpu", | 109 "//mojo/gpu", |
| 109 "//mojo/public/cpp/bindings:callback", | 110 "//mojo/public/cpp/bindings:callback", |
| 110 "//mojo/services/geometry/interfaces", | 111 "//mojo/services/geometry/interfaces", |
| 111 "//mojo/services/gfx/composition/interfaces", | 112 "//mojo/services/gfx/composition/interfaces", |
| 112 "//testing/gtest", | 113 "//testing/gtest", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| OLD | NEW |