| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 include_dirs = [ ".." ] | 42 include_dirs = [ ".." ] |
| 43 | 43 |
| 44 deps = [ | 44 deps = [ |
| 45 "//cc", | 45 "//cc", |
| 46 "//cc/surfaces", | 46 "//cc/surfaces", |
| 47 "//gin", | 47 "//gin", |
| 48 "//mojo/application", | 48 "//mojo/application", |
| 49 "//mojo/bindings/js", | 49 "//mojo/bindings/js", |
| 50 "//mojo/cc", | 50 "//mojo/cc", |
| 51 "//mojo/common", | 51 "//mojo/common", |
| 52 "//mojo/converters/geometry", |
| 52 "//mojo/public/c/system:for_shared_library", | 53 "//mojo/public/c/system:for_shared_library", |
| 53 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
| 54 "//mojo/public/cpp/utility", | 55 "//mojo/public/cpp/utility", |
| 55 "//mojo/services/public/cpp/view_manager", | 56 "//mojo/services/public/cpp/view_manager", |
| 56 "//mojo/services/public/interfaces/content_handler", | 57 "//mojo/services/public/interfaces/content_handler", |
| 57 "//mojo/services/public/interfaces/gpu", | 58 "//mojo/services/public/interfaces/gpu", |
| 58 "//mojo/services/public/interfaces/navigation", | 59 "//mojo/services/public/interfaces/navigation", |
| 59 "//mojo/services/public/interfaces/network", | 60 "//mojo/services/public/interfaces/network", |
| 60 "//mojo/services/public/interfaces/surfaces", | 61 "//mojo/services/public/interfaces/surfaces", |
| 61 "//net", | 62 "//net", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 79 | 80 |
| 80 copy("html_modules") { | 81 copy("html_modules") { |
| 81 sources = [ | 82 sources = [ |
| 82 "script/core.html", | 83 "script/core.html", |
| 83 "script/support.html", | 84 "script/support.html", |
| 84 ] | 85 ] |
| 85 outputs = [ | 86 outputs = [ |
| 86 "$root_gen_dir/mojo/public/html/{{source_file_part}}", | 87 "$root_gen_dir/mojo/public/html/{{source_file_part}}", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| OLD | NEW |