| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "quick_unlock_private.idl", | 113 "quick_unlock_private.idl", |
| 114 "terminal_private.json", | 114 "terminal_private.json", |
| 115 "users_private.idl", | 115 "users_private.idl", |
| 116 "wallpaper.json", | 116 "wallpaper.json", |
| 117 "wallpaper_private.json", | 117 "wallpaper_private.json", |
| 118 ] | 118 ] |
| 119 } else if (is_linux || is_win) { | 119 } else if (is_linux || is_win) { |
| 120 schema_sources += [ "input_ime.json" ] | 120 schema_sources += [ "input_ime.json" ] |
| 121 } | 121 } |
| 122 if (enable_service_discovery) { | 122 if (enable_service_discovery) { |
| 123 schema_sources += [ | 123 schema_sources += [ "mdns.idl" ] |
| 124 "gcd_private.idl", | |
| 125 "mdns.idl", | |
| 126 ] | |
| 127 } | 124 } |
| 128 if (enable_webrtc) { | 125 if (enable_webrtc) { |
| 129 schema_sources += [ | 126 schema_sources += [ |
| 130 "cast_streaming_receiver_session.idl", | 127 "cast_streaming_receiver_session.idl", |
| 131 "cast_streaming_rtp_stream.idl", | 128 "cast_streaming_rtp_stream.idl", |
| 132 "cast_streaming_session.idl", | 129 "cast_streaming_session.idl", |
| 133 "cast_streaming_udp_transport.idl", | 130 "cast_streaming_udp_transport.idl", |
| 134 ] | 131 ] |
| 135 } | 132 } |
| 136 if (enable_app_list) { | 133 if (enable_app_list) { |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 } | 263 } |
| 267 | 264 |
| 268 group("extensions_features") { | 265 group("extensions_features") { |
| 269 public_deps = [ | 266 public_deps = [ |
| 270 ":api_features", | 267 ":api_features", |
| 271 ":behavior_features", | 268 ":behavior_features", |
| 272 ":manifest_features", | 269 ":manifest_features", |
| 273 ":permission_features", | 270 ":permission_features", |
| 274 ] | 271 ] |
| 275 } | 272 } |
| OLD | NEW |