| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//mojo/services/surfaces/public/interfaces", | 57 "//mojo/services/surfaces/public/interfaces", |
| 58 "//mojo/services/view_manager/public/cpp", | 58 "//mojo/services/view_manager/public/cpp", |
| 59 "//net", | 59 "//net", |
| 60 "//skia", | 60 "//skia", |
| 61 "//sky/compositor", | 61 "//sky/compositor", |
| 62 "//sky/engine", | 62 "//sky/engine", |
| 63 "//sky/engine/v8_inspector", | 63 "//sky/engine/v8_inspector", |
| 64 "//sky/services/inspector:bindings", | 64 "//sky/services/inspector:bindings", |
| 65 "//sky/services/testing:bindings", | 65 "//sky/services/testing:bindings", |
| 66 "//third_party/icu", | 66 "//third_party/icu", |
| 67 "//ui/native_theme", | |
| 68 "//url", | 67 "//url", |
| 69 ] | 68 ] |
| 70 } | 69 } |
| 71 | 70 |
| 72 mojom("bindings") { | 71 mojom("bindings") { |
| 73 sources = [ | 72 sources = [ |
| 74 "services/inspector.mojom", | 73 "services/inspector.mojom", |
| 75 ] | 74 ] |
| 76 } | 75 } |
| 77 | 76 |
| 78 copy("sky_modules") { | 77 copy("sky_modules") { |
| 79 sources = [ | 78 sources = [ |
| 80 "script/core.sky", | 79 "script/core.sky", |
| 81 "script/support.sky", | 80 "script/support.sky", |
| 82 "script/threading.sky", | 81 "script/threading.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 |