| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 mojo_native_application("viewer") { | 8 mojo_native_application("viewer") { |
| 9 output_name = "sky_viewer" | 9 output_name = "sky_viewer" |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 include_dirs = [ ".." ] | 35 include_dirs = [ ".." ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 ":bindings", | 38 ":bindings", |
| 39 "//mojo/application", | 39 "//mojo/application", |
| 40 "//mojo/common", | 40 "//mojo/common", |
| 41 "//mojo/common:tracing_impl", | 41 "//mojo/common:tracing_impl", |
| 42 "//mojo/converters/geometry", | 42 "//mojo/converters/geometry", |
| 43 "//mojo/converters/input_events", | 43 "//mojo/converters/input_events", |
| 44 "//mojo/converters/surfaces", | 44 "//mojo/converters/surfaces", |
| 45 "//mojo/edk/js", | |
| 46 "//mojo/icu", | 45 "//mojo/icu", |
| 47 "//mojo/public/cpp/bindings", | 46 "//mojo/public/cpp/bindings", |
| 48 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
| 49 "//mojo/public/cpp/utility", | 48 "//mojo/public/cpp/utility", |
| 50 "//mojo/public/interfaces/application", | 49 "//mojo/public/interfaces/application", |
| 51 "//mojo/services/content_handler/public/interfaces", | 50 "//mojo/services/content_handler/public/interfaces", |
| 52 "//mojo/services/gpu/public/interfaces", | 51 "//mojo/services/gpu/public/interfaces", |
| 53 "//mojo/services/input_events/public/interfaces", | 52 "//mojo/services/input_events/public/interfaces", |
| 54 "//mojo/services/navigation/public/interfaces", | 53 "//mojo/services/navigation/public/interfaces", |
| 55 "//mojo/services/network/public/interfaces", | 54 "//mojo/services/network/public/interfaces", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 66 "//ui/events", | 65 "//ui/events", |
| 67 "//url", | 66 "//url", |
| 68 ] | 67 ] |
| 69 } | 68 } |
| 70 | 69 |
| 71 mojom("bindings") { | 70 mojom("bindings") { |
| 72 sources = [ | 71 sources = [ |
| 73 "services/inspector.mojom", | 72 "services/inspector.mojom", |
| 74 ] | 73 ] |
| 75 } | 74 } |
| OLD | NEW |