| 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 22 matching lines...) Expand all Loading... |
| 33 "script/script_runner.cc", | 33 "script/script_runner.cc", |
| 34 "script/script_runner.h", | 34 "script/script_runner.h", |
| 35 "services/tracing_impl.cc", | 35 "services/tracing_impl.cc", |
| 36 "services/tracing_impl.h", | 36 "services/tracing_impl.h", |
| 37 "viewer.cc", | 37 "viewer.cc", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 include_dirs = [ ".." ] | 40 include_dirs = [ ".." ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 "//base:i18n", |
| 43 "//cc", | 44 "//cc", |
| 44 "//cc/surfaces", | 45 "//cc/surfaces", |
| 45 "//gin", | 46 "//gin", |
| 46 "//mojo/application", | 47 "//mojo/application", |
| 47 "//mojo/bindings/js", | 48 "//mojo/bindings/js", |
| 48 "//mojo/cc", | 49 "//mojo/cc", |
| 49 "//mojo/common", | 50 "//mojo/common", |
| 50 "//mojo/converters/geometry", | 51 "//mojo/converters/geometry", |
| 52 "//mojo/converters/surfaces", |
| 51 "//mojo/public/c/system:for_shared_library", | 53 "//mojo/public/c/system:for_shared_library", |
| 52 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
| 55 "//mojo/public/cpp/system", |
| 53 "//mojo/public/cpp/utility", | 56 "//mojo/public/cpp/utility", |
| 57 "//mojo/public/interfaces/application", |
| 54 "//mojo/services/public/cpp/view_manager", | 58 "//mojo/services/public/cpp/view_manager", |
| 55 "//mojo/services/public/interfaces/content_handler", | 59 "//mojo/services/public/interfaces/content_handler", |
| 56 "//mojo/services/public/interfaces/gpu", | 60 "//mojo/services/public/interfaces/gpu", |
| 61 "//mojo/services/public/interfaces/input_events", |
| 57 "//mojo/services/public/interfaces/navigation", | 62 "//mojo/services/public/interfaces/navigation", |
| 58 "//mojo/services/public/interfaces/network", | 63 "//mojo/services/public/interfaces/network", |
| 59 "//mojo/services/public/interfaces/surfaces", | 64 "//mojo/services/public/interfaces/surfaces", |
| 60 "//net", | 65 "//net", |
| 61 "//skia", | 66 "//skia", |
| 62 "//sky/engine/public:blink", | 67 "//sky/engine/public:blink", |
| 63 "//sky/viewer/cc", | 68 "//sky/viewer/cc", |
| 64 "//third_party/icu", | 69 "//third_party/icu", |
| 65 "//ui/native_theme", | 70 "//ui/native_theme", |
| 66 "//url", | 71 "//url", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 78 | 83 |
| 79 copy("html_modules") { | 84 copy("html_modules") { |
| 80 sources = [ | 85 sources = [ |
| 81 "script/core.html", | 86 "script/core.html", |
| 82 "script/support.html", | 87 "script/support.html", |
| 83 ] | 88 ] |
| 84 outputs = [ | 89 outputs = [ |
| 85 "$root_gen_dir/mojo/public/html/{{source_file_part}}", | 90 "$root_gen_dir/mojo/public/html/{{source_file_part}}", |
| 86 ] | 91 ] |
| 87 } | 92 } |
| OLD | NEW |