| 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 26 matching lines...) Expand all Loading... |
| 37 include_dirs = [ ".." ] | 37 include_dirs = [ ".." ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 ":bindings", | 40 ":bindings", |
| 41 ":sky_modules", | 41 ":sky_modules", |
| 42 "//gin", | 42 "//gin", |
| 43 "//mojo/application", | 43 "//mojo/application", |
| 44 "//mojo/common", | 44 "//mojo/common", |
| 45 "//mojo/common:tracing_impl", | 45 "//mojo/common:tracing_impl", |
| 46 "//mojo/converters/geometry", | 46 "//mojo/converters/geometry", |
| 47 "//mojo/converters/input_events", |
| 47 "//mojo/converters/surfaces", | 48 "//mojo/converters/surfaces", |
| 48 "//mojo/edk/js", | 49 "//mojo/edk/js", |
| 49 "//mojo/icu", | 50 "//mojo/icu", |
| 50 "//mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
| 51 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 52 "//mojo/public/cpp/utility", | 53 "//mojo/public/cpp/utility", |
| 53 "//mojo/public/interfaces/application", | 54 "//mojo/public/interfaces/application", |
| 54 "//mojo/services/content_handler/public/interfaces", | 55 "//mojo/services/content_handler/public/interfaces", |
| 55 "//mojo/services/gpu/public/interfaces", | 56 "//mojo/services/gpu/public/interfaces", |
| 56 "//mojo/services/input_events/public/interfaces", | 57 "//mojo/services/input_events/public/interfaces", |
| 57 "//mojo/services/navigation/public/interfaces", | 58 "//mojo/services/navigation/public/interfaces", |
| 58 "//mojo/services/network/public/interfaces", | 59 "//mojo/services/network/public/interfaces", |
| 59 "//mojo/services/surfaces/public/interfaces", | 60 "//mojo/services/surfaces/public/interfaces", |
| 60 "//mojo/services/view_manager/public/cpp", | 61 "//mojo/services/view_manager/public/cpp", |
| 61 "//net", | 62 "//net", |
| 62 "//skia", | 63 "//skia", |
| 63 "//sky/compositor", | 64 "//sky/compositor", |
| 64 "//sky/engine", | 65 "//sky/engine", |
| 65 "//sky/engine/v8_inspector", | 66 "//sky/engine/v8_inspector", |
| 66 "//sky/services/inspector:bindings", | 67 "//sky/services/inspector:bindings", |
| 67 "//sky/services/testing:bindings", | 68 "//sky/services/testing:bindings", |
| 68 "//third_party/icu", | 69 "//third_party/icu", |
| 70 "//ui/events", |
| 69 "//url", | 71 "//url", |
| 70 ] | 72 ] |
| 71 } | 73 } |
| 72 | 74 |
| 73 mojom("bindings") { | 75 mojom("bindings") { |
| 74 sources = [ | 76 sources = [ |
| 75 "services/inspector.mojom", | 77 "services/inspector.mojom", |
| 76 ] | 78 ] |
| 77 } | 79 } |
| 78 | 80 |
| 79 copy("sky_modules") { | 81 copy("sky_modules") { |
| 80 sources = [ | 82 sources = [ |
| 81 "script/core.sky", | 83 "script/core.sky", |
| 82 "script/support.sky", | 84 "script/support.sky", |
| 83 "script/threading.sky", | 85 "script/threading.sky", |
| 84 ] | 86 ] |
| 85 outputs = [ | 87 outputs = [ |
| 86 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", | 88 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", |
| 87 ] | 89 ] |
| 88 } | 90 } |
| OLD | NEW |