| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/json_schema_api.gni") | 6 import("//build/json_schema_api.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 assert(enable_extensions) | 9 assert(enable_extensions) |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "dns.idl", | 26 "dns.idl", |
| 27 "events.json", | 27 "events.json", |
| 28 "extensions_manifest_types.json", | 28 "extensions_manifest_types.json", |
| 29 "extension_options_internal.idl", | 29 "extension_options_internal.idl", |
| 30 "extension_view_internal.json", | 30 "extension_view_internal.json", |
| 31 "extension_types.json", | 31 "extension_types.json", |
| 32 "guest_view_internal.json", | 32 "guest_view_internal.json", |
| 33 "management.json", | 33 "management.json", |
| 34 "hid.idl", | 34 "hid.idl", |
| 35 "idle.json", | 35 "idle.json", |
| 36 "mime_handler_private.idl", | |
| 37 "mime_handler_view_guest_internal.json", | 36 "mime_handler_view_guest_internal.json", |
| 38 "mojo_private.idl", | 37 "mojo_private.idl", |
| 39 "networking_private.idl", | 38 "networking_private.idl", |
| 40 "power.idl", | 39 "power.idl", |
| 41 "printer_provider.idl", | 40 "printer_provider.idl", |
| 42 "printer_provider_internal.idl", | 41 "printer_provider_internal.idl", |
| 43 "runtime.json", | 42 "runtime.json", |
| 44 "serial.idl", | 43 "serial.idl", |
| 45 "socket.idl", | 44 "socket.idl", |
| 46 "sockets_tcp.idl", | 45 "sockets_tcp.idl", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 deps = [ | 110 deps = [ |
| 112 ":api", | 111 ":api", |
| 113 "//device/serial", | 112 "//device/serial", |
| 114 "//extensions/common/api/cast_channel:cast_channel_proto", | 113 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 115 "//skia", | 114 "//skia", |
| 116 ] | 115 ] |
| 117 | 116 |
| 118 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and | 117 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and |
| 119 # root_namespace. | 118 # root_namespace. |
| 120 } | 119 } |
| OLD | NEW |