| 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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 shared_library("viewer") { | 7 shared_library("viewer") { |
| 8 output_name = "sky_viewer" | 8 output_name = "sky_viewer" |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "internals.cc", | 21 "internals.cc", |
| 22 "internals.h", | 22 "internals.h", |
| 23 "platform/platform_impl.cc", | 23 "platform/platform_impl.cc", |
| 24 "platform/platform_impl.h", | 24 "platform/platform_impl.h", |
| 25 "platform/weblayertreeview_impl.cc", | 25 "platform/weblayertreeview_impl.cc", |
| 26 "platform/weblayertreeview_impl.h", | 26 "platform/weblayertreeview_impl.h", |
| 27 "platform/webmimeregistry_impl.cc", | 27 "platform/webmimeregistry_impl.cc", |
| 28 "platform/webmimeregistry_impl.h", | 28 "platform/webmimeregistry_impl.h", |
| 29 "platform/webthemeengine_impl.cc", | 29 "platform/webthemeengine_impl.cc", |
| 30 "platform/webthemeengine_impl.h", | 30 "platform/webthemeengine_impl.h", |
| 31 "platform/webthread_impl.cc", | |
| 32 "platform/webthread_impl.h", | |
| 33 "platform/weburlloader_impl.cc", | 31 "platform/weburlloader_impl.cc", |
| 34 "platform/weburlloader_impl.h", | 32 "platform/weburlloader_impl.h", |
| 35 "script/script_runner.cc", | 33 "script/script_runner.cc", |
| 36 "script/script_runner.h", | 34 "script/script_runner.h", |
| 37 "services/tracing_impl.cc", | 35 "services/tracing_impl.cc", |
| 38 "services/tracing_impl.h", | 36 "services/tracing_impl.h", |
| 39 "viewer.cc", | 37 "viewer.cc", |
| 40 ] | 38 ] |
| 41 | 39 |
| 42 include_dirs = [ ".." ] | 40 include_dirs = [ ".." ] |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 77 |
| 80 copy("html_modules") { | 78 copy("html_modules") { |
| 81 sources = [ | 79 sources = [ |
| 82 "script/core.html", | 80 "script/core.html", |
| 83 "script/support.html", | 81 "script/support.html", |
| 84 ] | 82 ] |
| 85 outputs = [ | 83 outputs = [ |
| 86 "$root_gen_dir/mojo/public/html/{{source_file_part}}", | 84 "$root_gen_dir/mojo/public/html/{{source_file_part}}", |
| 87 ] | 85 ] |
| 88 } | 86 } |
| OLD | NEW |