Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Side by Side Diff: extensions/common/api/BUILD.gn

Issue 2370373002: Move chrome.bluetoothLowEnergy out of //chrome. (Closed)
Patch Set: build fix Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/json_schema_api.gni") 6 import("//build/json_schema_api.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 assert(enable_extensions) 9 assert(enable_extensions)
10 10
11 schema_files = [ 11 schema_files = [
12 "alarms.idl", 12 "alarms.idl",
13 "app_current_window_internal.idl", 13 "app_current_window_internal.idl",
14 "app_runtime.idl", 14 "app_runtime.idl",
15 "app_view_guest_internal.json", 15 "app_view_guest_internal.json",
16 "app_window.idl", 16 "app_window.idl",
17 "audio.idl", 17 "audio.idl",
18 "bluetooth.idl", 18 "bluetooth.idl",
19 "bluetooth_low_energy.idl",
19 "bluetooth_private.idl", 20 "bluetooth_private.idl",
20 "bluetooth_socket.idl", 21 "bluetooth_socket.idl",
21 "cast_channel.idl", 22 "cast_channel.idl",
22 "clipboard.idl", 23 "clipboard.idl",
23 "document_scan.idl", 24 "document_scan.idl",
24 "display_source.idl", 25 "display_source.idl",
25 "dns.idl", 26 "dns.idl",
26 "events.json", 27 "events.json",
27 "extensions_manifest_types.json", 28 "extensions_manifest_types.json",
28 "extension_options_internal.idl", 29 "extension_options_internal.idl",
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 deps = [ 111 deps = [
111 ":api", 112 ":api",
112 "//device/serial", 113 "//device/serial",
113 "//extensions/common/api/cast_channel:cast_channel_proto", 114 "//extensions/common/api/cast_channel:cast_channel_proto",
114 "//skia", 115 "//skia",
115 ] 116 ]
116 117
117 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and 118 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and
118 # root_namespace. 119 # root_namespace.
119 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698