| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "manifest_handlers/mime_types_handler.cc", | 173 "manifest_handlers/mime_types_handler.cc", |
| 174 "manifest_handlers/mime_types_handler.h", | 174 "manifest_handlers/mime_types_handler.h", |
| 175 "manifest_handlers/oauth2_manifest_handler.cc", | 175 "manifest_handlers/oauth2_manifest_handler.cc", |
| 176 "manifest_handlers/oauth2_manifest_handler.h", | 176 "manifest_handlers/oauth2_manifest_handler.h", |
| 177 "manifest_handlers/offline_enabled_info.cc", | 177 "manifest_handlers/offline_enabled_info.cc", |
| 178 "manifest_handlers/offline_enabled_info.h", | 178 "manifest_handlers/offline_enabled_info.h", |
| 179 "manifest_handlers/options_page_info.cc", | 179 "manifest_handlers/options_page_info.cc", |
| 180 "manifest_handlers/options_page_info.h", | 180 "manifest_handlers/options_page_info.h", |
| 181 "manifest_handlers/permissions_parser.cc", | 181 "manifest_handlers/permissions_parser.cc", |
| 182 "manifest_handlers/permissions_parser.h", | 182 "manifest_handlers/permissions_parser.h", |
| 183 "manifest_handlers/plugins_handler.cc", |
| 184 "manifest_handlers/plugins_handler.h", |
| 183 "manifest_handlers/requirements_info.cc", | 185 "manifest_handlers/requirements_info.cc", |
| 184 "manifest_handlers/requirements_info.h", | 186 "manifest_handlers/requirements_info.h", |
| 185 "manifest_handlers/sandboxed_page_info.cc", | 187 "manifest_handlers/sandboxed_page_info.cc", |
| 186 "manifest_handlers/sandboxed_page_info.h", | 188 "manifest_handlers/sandboxed_page_info.h", |
| 187 "manifest_handlers/shared_module_info.cc", | 189 "manifest_handlers/shared_module_info.cc", |
| 188 "manifest_handlers/shared_module_info.h", | 190 "manifest_handlers/shared_module_info.h", |
| 189 "manifest_handlers/web_accessible_resources_info.cc", | 191 "manifest_handlers/web_accessible_resources_info.cc", |
| 190 "manifest_handlers/web_accessible_resources_info.h", | 192 "manifest_handlers/web_accessible_resources_info.h", |
| 191 "manifest_handlers/webview_info.cc", | 193 "manifest_handlers/webview_info.cc", |
| 192 "manifest_handlers/webview_info.h", | 194 "manifest_handlers/webview_info.h", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 "//ui/base", | 384 "//ui/base", |
| 383 "//ui/gfx", | 385 "//ui/gfx", |
| 384 "//url", | 386 "//url", |
| 385 ] | 387 ] |
| 386 | 388 |
| 387 if (is_chromeos) { | 389 if (is_chromeos) { |
| 388 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 389 } | 391 } |
| 390 } | 392 } |
| 391 } # enable_extensions | 393 } # enable_extensions |
| OLD | NEW |