| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "webrtc_audio_private.idl", | 82 "webrtc_audio_private.idl", |
| 83 "webrtc_desktop_capture_private.idl", | 83 "webrtc_desktop_capture_private.idl", |
| 84 "webrtc_logging_private.idl", | 84 "webrtc_logging_private.idl", |
| 85 "webstore_private.json", | 85 "webstore_private.json", |
| 86 "webstore_widget_private.idl", | 86 "webstore_widget_private.idl", |
| 87 "windows.json", | 87 "windows.json", |
| 88 ] | 88 ] |
| 89 if (!is_android) { | 89 if (!is_android) { |
| 90 schema_sources += [ "processes.idl" ] | 90 schema_sources += [ "processes.idl" ] |
| 91 } | 91 } |
| 92 |
| 93 if (is_chromeos || is_mac || is_win) { |
| 94 schema_sources += [ "networking_cast_private.idl" ] |
| 95 } |
| 96 |
| 92 if (is_chromeos) { | 97 if (is_chromeos) { |
| 93 schema_sources += [ | 98 schema_sources += [ |
| 94 "certificate_provider.idl", | 99 "certificate_provider.idl", |
| 95 "certificate_provider_internal.idl", | 100 "certificate_provider_internal.idl", |
| 96 "echo_private.json", | 101 "echo_private.json", |
| 97 "enterprise_device_attributes.idl", | 102 "enterprise_device_attributes.idl", |
| 98 "enterprise_platform_keys.idl", | 103 "enterprise_platform_keys.idl", |
| 99 "enterprise_platform_keys_internal.idl", | 104 "enterprise_platform_keys_internal.idl", |
| 100 "enterprise_platform_keys_private.json", | 105 "enterprise_platform_keys_private.json", |
| 101 "file_browser_handler_internal.json", | 106 "file_browser_handler_internal.json", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 } | 268 } |
| 264 | 269 |
| 265 group("extensions_features") { | 270 group("extensions_features") { |
| 266 public_deps = [ | 271 public_deps = [ |
| 267 ":api_features", | 272 ":api_features", |
| 268 ":behavior_features", | 273 ":behavior_features", |
| 269 ":manifest_features", | 274 ":manifest_features", |
| 270 ":permission_features", | 275 ":permission_features", |
| 271 ] | 276 ] |
| 272 } | 277 } |
| OLD | NEW |