OLD | NEW |
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("//media/media_options.gni") |
10 import("//tools/json_schema_compiler/json_features.gni") | 10 import("//tools/json_schema_compiler/json_features.gni") |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 # Despite the name, these APIs do not rely on any WebRTC-specific bits and as | 81 # Despite the name, these APIs do not rely on any WebRTC-specific bits and as |
82 # such do not belong in a conditional. | 82 # such do not belong in a conditional. |
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 (!is_android) { |
91 schema_sources += [ "processes.idl" ] | 91 schema_sources += [ "processes.idl" ] |
92 } | 92 } |
93 if (is_chromeos) { | 93 if (is_chromeos) { |
94 schema_sources += [ | 94 schema_sources += [ |
95 "certificate_provider.idl", | 95 "certificate_provider.idl", |
96 "certificate_provider_internal.idl", | 96 "certificate_provider_internal.idl", |
97 "echo_private.json", | 97 "echo_private.json", |
98 "enterprise_device_attributes.idl", | 98 "enterprise_device_attributes.idl", |
99 "enterprise_platform_keys.idl", | 99 "enterprise_platform_keys.idl", |
100 "enterprise_platform_keys_internal.idl", | 100 "enterprise_platform_keys_internal.idl", |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |