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 16 matching lines...) Expand all Loading... |
27 "platform/webmimeregistry_impl.cc", | 27 "platform/webmimeregistry_impl.cc", |
28 "platform/webmimeregistry_impl.h", | 28 "platform/webmimeregistry_impl.h", |
29 "platform/webthemeengine_impl.cc", | 29 "platform/webthemeengine_impl.cc", |
30 "platform/webthemeengine_impl.h", | 30 "platform/webthemeengine_impl.h", |
31 "platform/weburlloader_impl.cc", | 31 "platform/weburlloader_impl.cc", |
32 "platform/weburlloader_impl.h", | 32 "platform/weburlloader_impl.h", |
33 "script/script_runner.cc", | 33 "script/script_runner.cc", |
34 "script/script_runner.h", | 34 "script/script_runner.h", |
35 "services/tracing_impl.cc", | 35 "services/tracing_impl.cc", |
36 "services/tracing_impl.h", | 36 "services/tracing_impl.h", |
| 37 "services/inspector_impl.cc", |
| 38 "services/inspector_impl.h", |
37 "viewer.cc", | 39 "viewer.cc", |
38 ] | 40 ] |
39 | 41 |
40 include_dirs = [ ".." ] | 42 include_dirs = [ ".." ] |
41 | 43 |
42 deps = [ | 44 deps = [ |
43 "//base:i18n", | 45 "//base:i18n", |
44 "//cc", | 46 "//cc", |
45 "//cc/surfaces", | 47 "//cc/surfaces", |
46 "//gin", | 48 "//gin", |
(...skipping 24 matching lines...) Expand all Loading... |
71 "//url", | 73 "//url", |
72 ":bindings", | 74 ":bindings", |
73 ":html_modules", | 75 ":html_modules", |
74 ] | 76 ] |
75 } | 77 } |
76 | 78 |
77 mojom("bindings") { | 79 mojom("bindings") { |
78 sources = [ | 80 sources = [ |
79 "test_observer.mojom", | 81 "test_observer.mojom", |
80 "services/tracing.mojom", | 82 "services/tracing.mojom", |
| 83 "services/inspector.mojom", |
81 ] | 84 ] |
82 } | 85 } |
83 | 86 |
84 copy("html_modules") { | 87 copy("html_modules") { |
85 sources = [ | 88 sources = [ |
86 "script/core.html", | 89 "script/core.html", |
87 "script/support.html", | 90 "script/support.html", |
88 ] | 91 ] |
89 outputs = [ | 92 outputs = [ |
90 "$root_gen_dir/mojo/public/html/{{source_file_part}}", | 93 "$root_gen_dir/mojo/public/html/{{source_file_part}}", |
91 ] | 94 ] |
92 } | 95 } |
OLD | NEW |