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