| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "install_warning.cc", | 133 "install_warning.cc", |
| 134 "install_warning.h", | 134 "install_warning.h", |
| 135 "manifest.cc", | 135 "manifest.cc", |
| 136 "manifest.h", | 136 "manifest.h", |
| 137 "manifest_constants.cc", | 137 "manifest_constants.cc", |
| 138 "manifest_constants.h", | 138 "manifest_constants.h", |
| 139 "manifest_handler.cc", | 139 "manifest_handler.cc", |
| 140 "manifest_handler.h", | 140 "manifest_handler.h", |
| 141 "manifest_handler_helpers.cc", | 141 "manifest_handler_helpers.cc", |
| 142 "manifest_handler_helpers.h", | 142 "manifest_handler_helpers.h", |
| 143 "manifest_handlers/action_handlers_handler.cc", |
| 144 "manifest_handlers/action_handlers_handler.h", |
| 143 "manifest_handlers/app_isolation_info.cc", | 145 "manifest_handlers/app_isolation_info.cc", |
| 144 "manifest_handlers/app_isolation_info.h", | 146 "manifest_handlers/app_isolation_info.h", |
| 145 "manifest_handlers/background_info.cc", | 147 "manifest_handlers/background_info.cc", |
| 146 "manifest_handlers/background_info.h", | 148 "manifest_handlers/background_info.h", |
| 147 "manifest_handlers/content_capabilities_handler.cc", | 149 "manifest_handlers/content_capabilities_handler.cc", |
| 148 "manifest_handlers/content_capabilities_handler.h", | 150 "manifest_handlers/content_capabilities_handler.h", |
| 149 "manifest_handlers/csp_info.cc", | 151 "manifest_handlers/csp_info.cc", |
| 150 "manifest_handlers/csp_info.h", | 152 "manifest_handlers/csp_info.h", |
| 151 "manifest_handlers/default_locale_handler.cc", | 153 "manifest_handlers/default_locale_handler.cc", |
| 152 "manifest_handlers/default_locale_handler.h", | 154 "manifest_handlers/default_locale_handler.h", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 "extension_l10n_util_unittest.cc", | 314 "extension_l10n_util_unittest.cc", |
| 313 "extension_messages_unittest.cc", | 315 "extension_messages_unittest.cc", |
| 314 "extension_resource_unittest.cc", | 316 "extension_resource_unittest.cc", |
| 315 "extension_set_unittest.cc", | 317 "extension_set_unittest.cc", |
| 316 "features/base_feature_provider_unittest.cc", | 318 "features/base_feature_provider_unittest.cc", |
| 317 "features/complex_feature_unittest.cc", | 319 "features/complex_feature_unittest.cc", |
| 318 "features/simple_feature_unittest.cc", | 320 "features/simple_feature_unittest.cc", |
| 319 "file_util_unittest.cc", | 321 "file_util_unittest.cc", |
| 320 "image_util_unittest.cc", | 322 "image_util_unittest.cc", |
| 321 "manifest_handler_unittest.cc", | 323 "manifest_handler_unittest.cc", |
| 324 "manifest_handlers/action_handlers_handler_unittest.cc", |
| 322 "manifest_handlers/content_capabilities_manifest_unittest.cc", | 325 "manifest_handlers/content_capabilities_manifest_unittest.cc", |
| 323 "manifest_handlers/csp_info_unittest.cc", | 326 "manifest_handlers/csp_info_unittest.cc", |
| 324 "manifest_handlers/default_locale_manifest_unittest.cc", | 327 "manifest_handlers/default_locale_manifest_unittest.cc", |
| 325 "manifest_handlers/externally_connectable_unittest.cc", | 328 "manifest_handlers/externally_connectable_unittest.cc", |
| 326 "manifest_handlers/file_handler_manifest_unittest.cc", | 329 "manifest_handlers/file_handler_manifest_unittest.cc", |
| 327 "manifest_handlers/icons_handler_unittest.cc", | 330 "manifest_handlers/icons_handler_unittest.cc", |
| 328 "manifest_handlers/incognito_manifest_unittest.cc", | 331 "manifest_handlers/incognito_manifest_unittest.cc", |
| 329 "manifest_handlers/kiosk_mode_info_unittest.cc", | 332 "manifest_handlers/kiosk_mode_info_unittest.cc", |
| 330 "manifest_handlers/oauth2_manifest_unittest.cc", | 333 "manifest_handlers/oauth2_manifest_unittest.cc", |
| 331 "manifest_handlers/shared_module_manifest_unittest.cc", | 334 "manifest_handlers/shared_module_manifest_unittest.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 360 "//extensions/strings", | 363 "//extensions/strings", |
| 361 "//ipc", | 364 "//ipc", |
| 362 "//testing/gmock", | 365 "//testing/gmock", |
| 363 "//testing/gtest", | 366 "//testing/gtest", |
| 364 "//ui/base", | 367 "//ui/base", |
| 365 "//ui/gfx", | 368 "//ui/gfx", |
| 366 "//url", | 369 "//url", |
| 367 ] | 370 ] |
| 368 } | 371 } |
| 369 } # enable_extensions | 372 } # enable_extensions |
| OLD | NEW |