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 |
11 sources = [ | 11 sources = [ |
12 "content_handler_impl.cc", | 12 "content_handler_impl.cc", |
13 "content_handler_impl.h", | 13 "content_handler_impl.h", |
14 "converters/basic_types.cc", | 14 "converters/basic_types.cc", |
15 "converters/basic_types.h", | 15 "converters/basic_types.h", |
16 "converters/input_event_types.cc", | 16 "converters/input_event_types.cc", |
17 "converters/input_event_types.h", | 17 "converters/input_event_types.h", |
18 "converters/url_request_types.cc", | |
19 "converters/url_request_types.h", | |
20 "document_view.cc", | 18 "document_view.cc", |
21 "document_view.h", | 19 "document_view.h", |
22 "internals.cc", | 20 "internals.cc", |
23 "internals.h", | 21 "internals.h", |
24 "platform/net_constants.h", | |
25 "platform/platform_impl.cc", | |
26 "platform/platform_impl.h", | |
27 "platform/weburlloader_impl.cc", | |
28 "platform/weburlloader_impl.h", | |
29 "runtime_flags.cc", | 22 "runtime_flags.cc", |
30 "runtime_flags.h", | 23 "runtime_flags.h", |
31 "viewer.cc", | 24 "viewer.cc", |
32 ] | 25 ] |
33 | 26 |
34 include_dirs = [ ".." ] | 27 include_dirs = [ ".." ] |
35 | 28 |
36 deps = [ | 29 deps = [ |
37 ":bindings", | 30 ":bindings", |
38 "//mojo/application", | 31 "//mojo/application", |
(...skipping 12 matching lines...) Expand all Loading... |
51 "//mojo/services/input_events/public/interfaces", | 44 "//mojo/services/input_events/public/interfaces", |
52 "//mojo/services/navigation/public/interfaces", | 45 "//mojo/services/navigation/public/interfaces", |
53 "//mojo/services/network/public/interfaces", | 46 "//mojo/services/network/public/interfaces", |
54 "//mojo/services/surfaces/public/interfaces", | 47 "//mojo/services/surfaces/public/interfaces", |
55 "//mojo/services/view_manager/public/cpp", | 48 "//mojo/services/view_manager/public/cpp", |
56 "//skia", | 49 "//skia", |
57 "//sky/compositor", | 50 "//sky/compositor", |
58 "//sky/engine", | 51 "//sky/engine", |
59 "//sky/engine/tonic", | 52 "//sky/engine/tonic", |
60 "//sky/services/inspector:bindings", | 53 "//sky/services/inspector:bindings", |
| 54 "//sky/services/platform", |
61 "//sky/services/testing:bindings", | 55 "//sky/services/testing:bindings", |
62 "//third_party/icu", | 56 "//third_party/icu", |
63 "//ui/events", | 57 "//ui/events", |
64 "//url", | 58 "//url", |
65 ] | 59 ] |
66 } | 60 } |
67 | 61 |
68 mojom("bindings") { | 62 mojom("bindings") { |
69 sources = [ | 63 sources = [ |
70 "services/inspector.mojom", | 64 "services/inspector.mojom", |
71 ] | 65 ] |
72 } | 66 } |
OLD | NEW |