| 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", | 18 "converters/url_request_types.cc", |
| 19 "converters/url_request_types.h", | 19 "converters/url_request_types.h", |
| 20 "document_view.cc", | 20 "document_view.cc", |
| 21 "document_view.h", | 21 "document_view.h", |
| 22 "internals.cc", | 22 "internals.cc", |
| 23 "internals.h", | 23 "internals.h", |
| 24 "platform/platform_impl.cc", | 24 "platform/platform_impl.cc", |
| 25 "platform/platform_impl.h", | 25 "platform/platform_impl.h", |
| 26 "platform/weblayertreeview_impl.cc", | 26 "platform/weblayertreeview_impl.cc", |
| 27 "platform/weblayertreeview_impl.h", | 27 "platform/weblayertreeview_impl.h", |
| 28 "platform/webthemeengine_impl.cc", | |
| 29 "platform/webthemeengine_impl.h", | |
| 30 "platform/weburlloader_impl.cc", | 28 "platform/weburlloader_impl.cc", |
| 31 "platform/weburlloader_impl.h", | 29 "platform/weburlloader_impl.h", |
| 32 "script/script_runner.cc", | 30 "script/script_runner.cc", |
| 33 "script/script_runner.h", | 31 "script/script_runner.h", |
| 34 "services/tracing_impl.cc", | 32 "services/tracing_impl.cc", |
| 35 "services/tracing_impl.h", | 33 "services/tracing_impl.h", |
| 36 "services/inspector_impl.cc", | 34 "services/inspector_impl.cc", |
| 37 "services/inspector_impl.h", | 35 "services/inspector_impl.h", |
| 38 "viewer.cc", | 36 "viewer.cc", |
| 39 ] | 37 ] |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 86 |
| 89 copy("sky_modules") { | 87 copy("sky_modules") { |
| 90 sources = [ | 88 sources = [ |
| 91 "script/core.sky", | 89 "script/core.sky", |
| 92 "script/support.sky", | 90 "script/support.sky", |
| 93 ] | 91 ] |
| 94 outputs = [ | 92 outputs = [ |
| 95 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", | 93 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", |
| 96 ] | 94 ] |
| 97 } | 95 } |
| OLD | NEW |