| 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 # TODO(crbug.com/731689): Assert that extensions are enabled. | 9 # TODO(crbug.com/731689): Assert that extensions are enabled. |
| 10 | 10 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "manifest_handlers/requirements_info.cc", | 190 "manifest_handlers/requirements_info.cc", |
| 191 "manifest_handlers/requirements_info.h", | 191 "manifest_handlers/requirements_info.h", |
| 192 "manifest_handlers/sandboxed_page_info.cc", | 192 "manifest_handlers/sandboxed_page_info.cc", |
| 193 "manifest_handlers/sandboxed_page_info.h", | 193 "manifest_handlers/sandboxed_page_info.h", |
| 194 "manifest_handlers/shared_module_info.cc", | 194 "manifest_handlers/shared_module_info.cc", |
| 195 "manifest_handlers/shared_module_info.h", | 195 "manifest_handlers/shared_module_info.h", |
| 196 "manifest_handlers/web_accessible_resources_info.cc", | 196 "manifest_handlers/web_accessible_resources_info.cc", |
| 197 "manifest_handlers/web_accessible_resources_info.h", | 197 "manifest_handlers/web_accessible_resources_info.h", |
| 198 "manifest_handlers/webview_info.cc", | 198 "manifest_handlers/webview_info.cc", |
| 199 "manifest_handlers/webview_info.h", | 199 "manifest_handlers/webview_info.h", |
| 200 "manifest_location_param_traits.cc", | |
| 201 "manifest_location_param_traits.h", | 200 "manifest_location_param_traits.h", |
| 202 "manifest_url_handlers.cc", | 201 "manifest_url_handlers.cc", |
| 203 "manifest_url_handlers.h", | 202 "manifest_url_handlers.h", |
| 204 "message_bundle.cc", | 203 "message_bundle.cc", |
| 205 "message_bundle.h", | 204 "message_bundle.h", |
| 206 "one_shot_event.cc", | 205 "one_shot_event.cc", |
| 207 "one_shot_event.h", | 206 "one_shot_event.h", |
| 208 "permissions/api_permission.cc", | 207 "permissions/api_permission.cc", |
| 209 "permissions/api_permission.h", | 208 "permissions/api_permission.h", |
| 210 "permissions/api_permission_set.cc", | 209 "permissions/api_permission_set.cc", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "//ui/base", | 389 "//ui/base", |
| 391 "//ui/gfx", | 390 "//ui/gfx", |
| 392 "//url", | 391 "//url", |
| 393 ] | 392 ] |
| 394 | 393 |
| 395 if (is_chromeos) { | 394 if (is_chromeos) { |
| 396 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 395 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 397 } | 396 } |
| 398 } | 397 } |
| 399 } # enable_extensions | 398 } # enable_extensions |
| OLD | NEW |