| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 source_set("common_constants") { | 8 source_set("common_constants") { |
| 9 sources = [ | 9 sources = [ |
| 10 "constants.cc", | 10 "constants.cc", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "features/behavior_feature.cc", | 102 "features/behavior_feature.cc", |
| 103 "features/behavior_feature.h", | 103 "features/behavior_feature.h", |
| 104 "features/complex_feature.cc", | 104 "features/complex_feature.cc", |
| 105 "features/complex_feature.h", | 105 "features/complex_feature.h", |
| 106 "features/feature.cc", | 106 "features/feature.cc", |
| 107 "features/feature.h", | 107 "features/feature.h", |
| 108 "features/feature_channel.cc", | 108 "features/feature_channel.cc", |
| 109 "features/feature_channel.h", | 109 "features/feature_channel.h", |
| 110 "features/feature_provider.cc", | 110 "features/feature_provider.cc", |
| 111 "features/feature_provider.h", | 111 "features/feature_provider.h", |
| 112 "features/feature_session_type.cc", |
| 113 "features/feature_session_type.h", |
| 112 "features/feature_util.cc", | 114 "features/feature_util.cc", |
| 113 "features/feature_util.h", | 115 "features/feature_util.h", |
| 114 "features/json_feature_provider_source.cc", | 116 "features/json_feature_provider_source.cc", |
| 115 "features/json_feature_provider_source.h", | 117 "features/json_feature_provider_source.h", |
| 116 "features/manifest_feature.cc", | 118 "features/manifest_feature.cc", |
| 117 "features/manifest_feature.h", | 119 "features/manifest_feature.h", |
| 118 "features/permission_feature.cc", | 120 "features/permission_feature.cc", |
| 119 "features/permission_feature.h", | 121 "features/permission_feature.h", |
| 120 "features/simple_feature.cc", | 122 "features/simple_feature.cc", |
| 121 "features/simple_feature.h", | 123 "features/simple_feature.h", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//extensions/strings", | 353 "//extensions/strings", |
| 352 "//ipc", | 354 "//ipc", |
| 353 "//testing/gmock", | 355 "//testing/gmock", |
| 354 "//testing/gtest", | 356 "//testing/gtest", |
| 355 "//ui/base", | 357 "//ui/base", |
| 356 "//ui/gfx", | 358 "//ui/gfx", |
| 357 "//url", | 359 "//url", |
| 358 ] | 360 ] |
| 359 } | 361 } |
| 360 } # enable_extensions | 362 } # enable_extensions |
| OLD | NEW |