| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/json_schema_api.gni") | 7 import("//build/json_schema_api.gni") |
| 8 import("//tools/json_schema_compiler/json_features.gni") | 8 import("//tools/json_schema_compiler/json_features.gni") |
| 9 | 9 |
| 10 assert(enable_extensions) | 10 assert(enable_extensions) |
| 11 | 11 |
| 12 schema_sources = [ | 12 schema_sources = [ |
| 13 "accessibility_features.json", | 13 "accessibility_features.json", |
| 14 "accessibility_private.json", | 14 "accessibility_private.json", |
| 15 "activity_log_private.json", | 15 "activity_log_private.json", |
| 16 "autofill_private.idl", | 16 "autofill_private.idl", |
| 17 "automation.idl", | 17 "automation.idl", |
| 18 "automation_internal.idl", | 18 "automation_internal.idl", |
| 19 "autotest_private.idl", | 19 "autotest_private.idl", |
| 20 "bluetooth_low_energy.idl", | |
| 21 "bookmark_manager_private.json", | 20 "bookmark_manager_private.json", |
| 22 "bookmarks.json", | 21 "bookmarks.json", |
| 23 "braille_display_private.idl", | 22 "braille_display_private.idl", |
| 24 "browser.idl", | 23 "browser.idl", |
| 25 "chrome_web_view_internal.json", | 24 "chrome_web_view_internal.json", |
| 26 "cloud_print_private.json", | 25 "cloud_print_private.json", |
| 27 "command_line_private.json", | 26 "command_line_private.json", |
| 28 "content_settings.json", | 27 "content_settings.json", |
| 29 "context_menus_internal.json", | 28 "context_menus_internal.json", |
| 30 "context_menus.json", | 29 "context_menus.json", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 } | 267 } |
| 269 | 268 |
| 270 group("extensions_features") { | 269 group("extensions_features") { |
| 271 public_deps = [ | 270 public_deps = [ |
| 272 ":api_features", | 271 ":api_features", |
| 273 ":behavior_features", | 272 ":behavior_features", |
| 274 ":manifest_features", | 273 ":manifest_features", |
| 275 ":permission_features", | 274 ":permission_features", |
| 276 ] | 275 ] |
| 277 } | 276 } |
| OLD | NEW |