| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 source_set("common_constants") { | 9 source_set("common_constants") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "extension_messages.cc", | 93 "extension_messages.cc", |
| 94 "extension_messages.h", | 94 "extension_messages.h", |
| 95 "extension_paths.cc", | 95 "extension_paths.cc", |
| 96 "extension_paths.h", | 96 "extension_paths.h", |
| 97 "extension_resource.cc", | 97 "extension_resource.cc", |
| 98 "extension_resource.h", | 98 "extension_resource.h", |
| 99 "extension_set.cc", | 99 "extension_set.cc", |
| 100 "extension_set.h", | 100 "extension_set.h", |
| 101 "extension_urls.cc", | 101 "extension_urls.cc", |
| 102 "extension_urls.h", | 102 "extension_urls.h", |
| 103 "extension_utility_messages.h", | |
| 104 "extension_utility_types.h", | 103 "extension_utility_types.h", |
| 105 "extensions_aliases.cc", | 104 "extensions_aliases.cc", |
| 106 "extensions_aliases.h", | 105 "extensions_aliases.h", |
| 107 "extensions_client.cc", | 106 "extensions_client.cc", |
| 108 "extensions_client.h", | 107 "extensions_client.h", |
| 109 "feature_switch.cc", | 108 "feature_switch.cc", |
| 110 "feature_switch.h", | 109 "feature_switch.h", |
| 111 "features/api_feature.h", | |
| 112 "features/behavior_feature.cc", | 110 "features/behavior_feature.cc", |
| 113 "features/behavior_feature.h", | 111 "features/behavior_feature.h", |
| 114 "features/complex_feature.cc", | 112 "features/complex_feature.cc", |
| 115 "features/complex_feature.h", | 113 "features/complex_feature.h", |
| 116 "features/feature.cc", | 114 "features/feature.cc", |
| 117 "features/feature.h", | 115 "features/feature.h", |
| 118 "features/feature_channel.cc", | 116 "features/feature_channel.cc", |
| 119 "features/feature_channel.h", | 117 "features/feature_channel.h", |
| 120 "features/feature_provider.cc", | 118 "features/feature_provider.cc", |
| 121 "features/feature_provider.h", | 119 "features/feature_provider.h", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 "//ui/base", | 382 "//ui/base", |
| 385 "//ui/gfx", | 383 "//ui/gfx", |
| 386 "//url", | 384 "//url", |
| 387 ] | 385 ] |
| 388 | 386 |
| 389 if (is_chromeos) { | 387 if (is_chromeos) { |
| 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 388 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 391 } | 389 } |
| 392 } | 390 } |
| 393 } # enable_extensions | 391 } # enable_extensions |
| OLD | NEW |