| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 impl_dir = "//extensions/browser/api" | 135 impl_dir = "//extensions/browser/api" |
| 136 bundle_registration = true | 136 bundle_registration = true |
| 137 bundle_name = "" | 137 bundle_name = "" |
| 138 root_namespace = extensions_api_root_namespace | 138 root_namespace = extensions_api_root_namespace |
| 139 uncompiled_sources = extensions_api_uncompiled_sources | 139 uncompiled_sources = extensions_api_uncompiled_sources |
| 140 | 140 |
| 141 deps = [ | 141 deps = [ |
| 142 ":api", | 142 ":api", |
| 143 "//device/serial", | 143 "//device/serial", |
| 144 "//extensions/common/api", | 144 "//extensions/common/api", |
| 145 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 145 "//skia", | 146 "//skia", |
| 146 ] | 147 ] |
| 147 } | 148 } |
| OLD | NEW |