Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: extensions/common/BUILD.gn

Issue 2783813002: Move ChromeRequirementsChecker to //extensions as a PreloadCheck (Closed)
Patch Set: SKIP: comments, tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "manifest_handlers/mime_types_handler.cc", 171 "manifest_handlers/mime_types_handler.cc",
172 "manifest_handlers/mime_types_handler.h", 172 "manifest_handlers/mime_types_handler.h",
173 "manifest_handlers/oauth2_manifest_handler.cc", 173 "manifest_handlers/oauth2_manifest_handler.cc",
174 "manifest_handlers/oauth2_manifest_handler.h", 174 "manifest_handlers/oauth2_manifest_handler.h",
175 "manifest_handlers/offline_enabled_info.cc", 175 "manifest_handlers/offline_enabled_info.cc",
176 "manifest_handlers/offline_enabled_info.h", 176 "manifest_handlers/offline_enabled_info.h",
177 "manifest_handlers/options_page_info.cc", 177 "manifest_handlers/options_page_info.cc",
178 "manifest_handlers/options_page_info.h", 178 "manifest_handlers/options_page_info.h",
179 "manifest_handlers/permissions_parser.cc", 179 "manifest_handlers/permissions_parser.cc",
180 "manifest_handlers/permissions_parser.h", 180 "manifest_handlers/permissions_parser.h",
181 "manifest_handlers/plugins_handler.cc",
182 "manifest_handlers/plugins_handler.h",
181 "manifest_handlers/requirements_info.cc", 183 "manifest_handlers/requirements_info.cc",
182 "manifest_handlers/requirements_info.h", 184 "manifest_handlers/requirements_info.h",
183 "manifest_handlers/sandboxed_page_info.cc", 185 "manifest_handlers/sandboxed_page_info.cc",
184 "manifest_handlers/sandboxed_page_info.h", 186 "manifest_handlers/sandboxed_page_info.h",
185 "manifest_handlers/shared_module_info.cc", 187 "manifest_handlers/shared_module_info.cc",
186 "manifest_handlers/shared_module_info.h", 188 "manifest_handlers/shared_module_info.h",
187 "manifest_handlers/web_accessible_resources_info.cc", 189 "manifest_handlers/web_accessible_resources_info.cc",
188 "manifest_handlers/web_accessible_resources_info.h", 190 "manifest_handlers/web_accessible_resources_info.h",
189 "manifest_handlers/webview_info.cc", 191 "manifest_handlers/webview_info.cc",
190 "manifest_handlers/webview_info.h", 192 "manifest_handlers/webview_info.h",
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 "//ui/base", 382 "//ui/base",
381 "//ui/gfx", 383 "//ui/gfx",
382 "//url", 384 "//url",
383 ] 385 ]
384 386
385 if (is_chromeos) { 387 if (is_chromeos) {
386 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] 388 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
387 } 389 }
388 } 390 }
389 } # enable_extensions 391 } # enable_extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698