| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "enterprise_platform_keys_private.json", | 105 "enterprise_platform_keys_private.json", |
| 106 "file_browser_handler_internal.json", | 106 "file_browser_handler_internal.json", |
| 107 "file_manager_private.idl", | 107 "file_manager_private.idl", |
| 108 "file_manager_private_internal.idl", | 108 "file_manager_private_internal.idl", |
| 109 "file_system_provider.idl", | 109 "file_system_provider.idl", |
| 110 "file_system_provider_internal.idl", | 110 "file_system_provider_internal.idl", |
| 111 "first_run_private.json", | 111 "first_run_private.json", |
| 112 "input_ime.json", | 112 "input_ime.json", |
| 113 "input_method_private.json", | 113 "input_method_private.json", |
| 114 "launcher_search_provider.idl", | 114 "launcher_search_provider.idl", |
| 115 "log_private.idl", | |
| 116 "platform_keys.idl", | 115 "platform_keys.idl", |
| 117 "platform_keys_internal.idl", | 116 "platform_keys_internal.idl", |
| 118 "quick_unlock_private.idl", | 117 "quick_unlock_private.idl", |
| 119 "terminal_private.json", | 118 "terminal_private.json", |
| 120 "users_private.idl", | 119 "users_private.idl", |
| 121 "wallpaper.json", | 120 "wallpaper.json", |
| 122 "wallpaper_private.json", | 121 "wallpaper_private.json", |
| 123 ] | 122 ] |
| 124 } else if (is_linux || is_win) { | 123 } else if (is_linux || is_win) { |
| 125 schema_sources += [ "input_ime.json" ] | 124 schema_sources += [ "input_ime.json" ] |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 } | 267 } |
| 269 | 268 |
| 270 group("extensions_features") { | 269 group("extensions_features") { |
| 271 public_deps = [ | 270 public_deps = [ |
| 272 ":api_features", | 271 ":api_features", |
| 273 ":behavior_features", | 272 ":behavior_features", |
| 274 ":manifest_features", | 273 ":manifest_features", |
| 275 ":permission_features", | 274 ":permission_features", |
| 276 ] | 275 ] |
| 277 } | 276 } |
| OLD | NEW |