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

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

Issue 2517953003: Move enable_webrtc to a buildflag header. (Closed)
Patch Set: Fix Created 4 years 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
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/common/features.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//media/media_options.gni")
9 import("//tools/json_schema_compiler/json_features.gni") 10 import("//tools/json_schema_compiler/json_features.gni")
10 import("//tools/json_schema_compiler/json_schema_api.gni") 11 import("//tools/json_schema_compiler/json_schema_api.gni")
11 12
12 assert(enable_extensions) 13 assert(enable_extensions)
13 14
14 schema_sources = [ 15 schema_sources = [
15 "accessibility_features.json", 16 "accessibility_features.json",
16 "accessibility_private.json", 17 "accessibility_private.json",
17 "activity_log_private.json", 18 "activity_log_private.json",
18 "autofill_private.idl", 19 "autofill_private.idl",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "signed_in_devices.idl", 71 "signed_in_devices.idl",
71 "streams_private.idl", 72 "streams_private.idl",
72 "sync_file_system.idl", 73 "sync_file_system.idl",
73 "system_indicator.idl", 74 "system_indicator.idl",
74 "system_private.json", 75 "system_private.json",
75 "tab_capture.idl", 76 "tab_capture.idl",
76 "tabs.json", 77 "tabs.json",
77 "types.json", 78 "types.json",
78 "web_navigation.json", 79 "web_navigation.json",
79 80
80 # Despite the name, this API does not rely on any 81 # Despite the name, these APIs do not rely on any WebRTC-specific bits and as
81 # WebRTC-specific bits and as such does not belong in 82 # such do not belong in a conditional.
82 # the enable_webrtc==0 section below.
83 "webrtc_audio_private.idl", 83 "webrtc_audio_private.idl",
84 "webrtc_desktop_capture_private.idl", 84 "webrtc_desktop_capture_private.idl",
85 "webrtc_logging_private.idl", 85 "webrtc_logging_private.idl",
86 "webstore_private.json", 86 "webstore_private.json",
87 "webstore_widget_private.idl", 87 "webstore_widget_private.idl",
88 "windows.json", 88 "windows.json",
89 ] 89 ]
90 if (enable_task_manager) { 90 if (enable_task_manager) {
91 schema_sources += [ "processes.idl" ] 91 schema_sources += [ "processes.idl" ]
92 } 92 }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 } 267 }
268 268
269 group("extensions_features") { 269 group("extensions_features") {
270 public_deps = [ 270 public_deps = [
271 ":api_features", 271 ":api_features",
272 ":behavior_features", 272 ":behavior_features",
273 ":manifest_features", 273 ":manifest_features",
274 ":permission_features", 274 ":permission_features",
275 ] 275 ]
276 } 276 }
OLDNEW
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/common/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698