| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//extensions/common/api/schema.gni") | 5 import("//extensions/common/api/schema.gni") |
| 6 import("//tools/json_schema_compiler/json_schema_api.gni") | 6 import("//tools/json_schema_compiler/json_schema_api.gni") |
| 7 | 7 |
| 8 source_set("api") { | 8 source_set("api") { |
| 9 sources = [ | 9 sources = [ |
| 10 "api_resource.cc", | 10 "api_resource.cc", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//extensions/browser/api/virtual_keyboard_private", | 81 "//extensions/browser/api/virtual_keyboard_private", |
| 82 "//extensions/browser/api/web_request", | 82 "//extensions/browser/api/web_request", |
| 83 "//extensions/common", | 83 "//extensions/common", |
| 84 "//ipc", | 84 "//ipc", |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 deps = [ | 87 deps = [ |
| 88 "//base:i18n", | 88 "//base:i18n", |
| 89 "//components/keyed_service/content:content", | 89 "//components/keyed_service/content:content", |
| 90 "//extensions/browser:browser_sources", | 90 "//extensions/browser:browser_sources", |
| 91 "//extensions/browser/guest_view", | |
| 92 "//extensions/common/api", | 91 "//extensions/common/api", |
| 93 "//extensions/strings", | 92 "//extensions/strings", |
| 94 ] | 93 ] |
| 95 | 94 |
| 96 # TODO(michaelpg): Move these deps to the individual APIs that require them. | 95 # TODO(michaelpg): Move these deps to the individual APIs that require them. |
| 97 deps += [ | 96 deps += [ |
| 98 "//components/onc", | 97 "//components/onc", |
| 99 "//components/storage_monitor", | 98 "//components/storage_monitor", |
| 100 "//device/base", | 99 "//device/base", |
| 101 "//device/bluetooth", | 100 "//device/bluetooth", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 root_namespace = extensions_api_root_namespace | 137 root_namespace = extensions_api_root_namespace |
| 139 uncompiled_sources = extensions_api_uncompiled_sources | 138 uncompiled_sources = extensions_api_uncompiled_sources |
| 140 | 139 |
| 141 deps = [ | 140 deps = [ |
| 142 ":api", | 141 ":api", |
| 143 "//device/serial", | 142 "//device/serial", |
| 144 "//extensions/common/api", | 143 "//extensions/common/api", |
| 145 "//skia", | 144 "//skia", |
| 146 ] | 145 ] |
| 147 } | 146 } |
| OLD | NEW |