| 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 27 matching lines...) Expand all Loading... |
| 38 ":bindings", | 38 ":bindings", |
| 39 ":sky_modules", | 39 ":sky_modules", |
| 40 "//base:i18n", | 40 "//base:i18n", |
| 41 "//gin", | 41 "//gin", |
| 42 "//mojo/application", | 42 "//mojo/application", |
| 43 "//mojo/common", | 43 "//mojo/common", |
| 44 "//mojo/common:tracing_impl", | 44 "//mojo/common:tracing_impl", |
| 45 "//mojo/converters/geometry", | 45 "//mojo/converters/geometry", |
| 46 "//mojo/converters/surfaces", | 46 "//mojo/converters/surfaces", |
| 47 "//mojo/edk/js", | 47 "//mojo/edk/js", |
| 48 "//mojo/public/c/system:for_shared_library", | |
| 49 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
| 50 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
| 51 "//mojo/public/cpp/utility", | 50 "//mojo/public/cpp/utility", |
| 52 "//mojo/public/interfaces/application", | 51 "//mojo/public/interfaces/application", |
| 53 "//mojo/services/public/cpp/view_manager", | 52 "//mojo/services/public/cpp/view_manager", |
| 54 "//mojo/services/public/interfaces/content_handler", | 53 "//mojo/services/public/interfaces/content_handler", |
| 55 "//mojo/services/public/interfaces/gpu", | 54 "//mojo/services/public/interfaces/gpu", |
| 56 "//mojo/services/public/interfaces/input_events", | 55 "//mojo/services/public/interfaces/input_events", |
| 57 "//mojo/services/public/interfaces/navigation", | 56 "//mojo/services/public/interfaces/navigation", |
| 58 "//mojo/services/public/interfaces/network", | 57 "//mojo/services/public/interfaces/network", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 78 | 77 |
| 79 copy("sky_modules") { | 78 copy("sky_modules") { |
| 80 sources = [ | 79 sources = [ |
| 81 "script/core.sky", | 80 "script/core.sky", |
| 82 "script/support.sky", | 81 "script/support.sky", |
| 83 ] | 82 ] |
| 84 outputs = [ | 83 outputs = [ |
| 85 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", | 84 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", |
| 86 ] | 85 ] |
| 87 } | 86 } |
| OLD | NEW |