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

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

Issue 2860203002: MediaPerceptionPrivate IDL and skeleton. (Closed)
Patch Set: Added permission set unittest fix. Created 3 years, 7 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 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "//components/onc", 98 "//components/onc",
99 "//components/storage_monitor", 99 "//components/storage_monitor",
100 "//device/base", 100 "//device/base",
101 "//device/bluetooth", 101 "//device/bluetooth",
102 "//device/hid", 102 "//device/hid",
103 "//device/power_save_blocker", 103 "//device/power_save_blocker",
104 "//device/serial", 104 "//device/serial",
105 ] 105 ]
106 106
107 if (is_chromeos) { 107 if (is_chromeos) {
108 sources += [
109 "media_perception_private/media_perception_private_api.cc",
110 "media_perception_private/media_perception_private_api.h",
111 ]
112
108 public_deps += [ 113 public_deps += [
109 "//extensions/browser/api/clipboard", 114 "//extensions/browser/api/clipboard",
110 "//extensions/browser/api/diagnostics", 115 "//extensions/browser/api/diagnostics",
111 "//extensions/browser/api/networking_config", 116 "//extensions/browser/api/networking_config",
112 "//extensions/browser/api/virtual_keyboard", 117 "//extensions/browser/api/virtual_keyboard",
113 "//extensions/browser/api/vpn_provider", 118 "//extensions/browser/api/vpn_provider",
114 "//extensions/browser/api/webcam_private", 119 "//extensions/browser/api/webcam_private",
115 ] 120 ]
116 121
117 deps += [ "//chromeos" ] 122 deps += [ "//chromeos" ]
118 } 123 }
119 } 124 }
120 125
121 json_schema_api("api_registration") { 126 json_schema_api("api_registration") {
122 sources = extensions_api_schema_files 127 sources = extensions_api_schema_files
123 impl_dir = "//extensions/browser/api" 128 impl_dir = "//extensions/browser/api"
124 bundle_registration = true 129 bundle_registration = true
125 bundle_name = "" 130 bundle_name = ""
126 root_namespace = extensions_api_root_namespace 131 root_namespace = extensions_api_root_namespace
127 uncompiled_sources = extensions_api_uncompiled_sources 132 uncompiled_sources = extensions_api_uncompiled_sources
128 133
129 deps = [ 134 deps = [
130 ":api", 135 ":api",
131 "//device/serial", 136 "//device/serial",
132 "//extensions/common/api", 137 "//extensions/common/api",
133 "//extensions/common/api/cast_channel:cast_channel_proto", 138 "//extensions/common/api/cast_channel:cast_channel_proto",
134 "//skia", 139 "//skia",
135 ] 140 ]
136 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698