| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "//mojo/services/public/cpp/view_manager", | 63 "//mojo/services/public/cpp/view_manager", |
| 64 "//mojo/services/public/interfaces/content_handler", | 64 "//mojo/services/public/interfaces/content_handler", |
| 65 "//mojo/services/public/interfaces/gpu", | 65 "//mojo/services/public/interfaces/gpu", |
| 66 "//mojo/services/public/interfaces/input_events", | 66 "//mojo/services/public/interfaces/input_events", |
| 67 "//mojo/services/public/interfaces/navigation", | 67 "//mojo/services/public/interfaces/navigation", |
| 68 "//mojo/services/public/interfaces/network", | 68 "//mojo/services/public/interfaces/network", |
| 69 "//mojo/services/public/interfaces/surfaces", | 69 "//mojo/services/public/interfaces/surfaces", |
| 70 "//net", | 70 "//net", |
| 71 "//skia", | 71 "//skia", |
| 72 "//sky/engine", | 72 "//sky/engine", |
| 73 "//sky/engine/v8_inspector", |
| 73 "//sky/scheduler", | 74 "//sky/scheduler", |
| 74 "//sky/services/inspector:bindings", | 75 "//sky/services/inspector:bindings", |
| 75 "//sky/services/testing:bindings", | 76 "//sky/services/testing:bindings", |
| 76 "//sky/viewer/cc", | 77 "//sky/viewer/cc", |
| 77 "//third_party/icu", | 78 "//third_party/icu", |
| 78 "//ui/native_theme", | 79 "//ui/native_theme", |
| 79 "//url", | 80 "//url", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| 82 | 83 |
| 83 mojom("bindings") { | 84 mojom("bindings") { |
| 84 sources = [ | 85 sources = [ |
| 85 "services/tracing.mojom", | 86 "services/tracing.mojom", |
| 86 "services/inspector.mojom", | 87 "services/inspector.mojom", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| 89 | 90 |
| 90 copy("sky_modules") { | 91 copy("sky_modules") { |
| 91 sources = [ | 92 sources = [ |
| 92 "script/core.sky", | 93 "script/core.sky", |
| 93 "script/support.sky", | 94 "script/support.sky", |
| 94 ] | 95 ] |
| 95 outputs = [ | 96 outputs = [ |
| 96 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", | 97 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", |
| 97 ] | 98 ] |
| 98 } | 99 } |
| OLD | NEW |