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("//extensions/generated_extensions_api.gni") | 5 import("//extensions/generated_extensions_api.gni") |
6 import("schemas.gni") | 6 import("schemas.gni") |
7 | 7 |
8 # GYP version: extensions/common/api/api.gyp:extensions_api | 8 # GYP version: extensions/common/api/api.gyp:extensions_api |
9 generated_extensions_api("api") { | 9 generated_extensions_api("api") { |
10 schemas = true | 10 schemas = true |
11 bundle = true | 11 bundle = true |
12 } | 12 } |
13 | 13 |
14 # GYP version: extensions/browser/api/api_registration.gyp:extensions_api_regist
ration | 14 # GYP version: extensions/browser/api/api_registration.gyp:extensions_api_regist
ration |
15 generated_extensions_api("api_registration") { | 15 generated_extensions_api("api_registration") { |
16 impl_dir = "//extensions/browser/api" | 16 impl_dir = "//extensions/browser/api" |
17 bundle_registration = true | 17 bundle_registration = true |
18 | 18 |
19 deps = [ ":api" ] | 19 deps = [ ":api" ] |
20 if (!is_android) { | 20 if (!is_android) { |
21 deps += [ | 21 deps += [ |
22 "//device/serial", | 22 "//device/serial", |
| 23 "//extensions/common/api/cast_channel:cast_channel_proto", |
23 "//skia", | 24 "//skia", |
24 ] | 25 ] |
25 } | 26 } |
26 } | 27 } |
OLD | NEW |