| 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/json_schema_api.gni") | 5 import("//build/json_schema_api.gni") |
| 6 import("//tools/json_schema_compiler/json_features.gni") | 6 import("//tools/json_schema_compiler/json_features.gni") |
| 7 | 7 |
| 8 schema_sources = [ "identity.idl" ] | 8 schema_sources = [ "identity.idl" ] |
| 9 root_namespace = "extensions::shell::api::%(namespace)s" | 9 root_namespace = "extensions::shell::api::%(namespace)s" |
| 10 | 10 |
| 11 # GYP version: extensions/shell/common/api/api.gyp:shell_api | |
| 12 json_schema_api("api") { | 11 json_schema_api("api") { |
| 13 sources = schema_sources | 12 sources = schema_sources |
| 14 schemas = true | 13 schemas = true |
| 15 bundle = true | 14 bundle = true |
| 16 bundle_name = "Shell" | 15 bundle_name = "Shell" |
| 17 } | 16 } |
| 18 | 17 |
| 19 # GYP version: extensions/shell/browser/api/api_registration.gyp:shell_api_regis
tration | |
| 20 json_schema_api("api_registration") { | 18 json_schema_api("api_registration") { |
| 21 sources = schema_sources | 19 sources = schema_sources |
| 22 impl_dir = "//extensions/shell/browser/api" | 20 impl_dir = "//extensions/shell/browser/api" |
| 23 bundle_registration = true | 21 bundle_registration = true |
| 24 bundle_name = "Shell" | 22 bundle_name = "Shell" |
| 25 | 23 |
| 26 deps = [ | 24 deps = [ |
| 27 ":api", | 25 ":api", |
| 28 ] | 26 ] |
| 29 } | 27 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 } | 60 } |
| 63 | 61 |
| 64 group("extensions_features") { | 62 group("extensions_features") { |
| 65 public_deps = [ | 63 public_deps = [ |
| 66 ":shell_api_features", | 64 ":shell_api_features", |
| 67 ":shell_behavior_features", | 65 ":shell_behavior_features", |
| 68 ":shell_manifest_features", | 66 ":shell_manifest_features", |
| 69 ":shell_permission_features", | 67 ":shell_permission_features", |
| 70 ] | 68 ] |
| 71 } | 69 } |
| OLD | NEW |