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

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

Issue 2745433002: PreloadCheckGroup for managing multiple extension PreloadChecks (Closed)
Patch Set: rebase & updates Created 3 years, 9 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
« no previous file with comments | « no previous file | extensions/browser/preload_check_group.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7
8 group("browser") { 8 group("browser") {
9 public_deps = [ 9 public_deps = [
10 "//extensions/browser:browser_context_keyed_service_factories", 10 "//extensions/browser:browser_context_keyed_service_factories",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "notification_types.cc", 223 "notification_types.cc",
224 "notification_types.h", 224 "notification_types.h",
225 "null_app_sorting.cc", 225 "null_app_sorting.cc",
226 "null_app_sorting.h", 226 "null_app_sorting.h",
227 "policy_check.cc", 227 "policy_check.cc",
228 "policy_check.h", 228 "policy_check.h",
229 "pref_names.cc", 229 "pref_names.cc",
230 "pref_names.h", 230 "pref_names.h",
231 "preload_check.cc", 231 "preload_check.cc",
232 "preload_check.h", 232 "preload_check.h",
233 "preload_check_group.cc",
234 "preload_check_group.h",
233 "process_manager.cc", 235 "process_manager.cc",
234 "process_manager.h", 236 "process_manager.h",
235 "process_manager_delegate.h", 237 "process_manager_delegate.h",
236 "process_manager_factory.cc", 238 "process_manager_factory.cc",
237 "process_manager_factory.h", 239 "process_manager_factory.h",
238 "process_manager_observer.h", 240 "process_manager_observer.h",
239 "process_map.cc", 241 "process_map.cc",
240 "process_map.h", 242 "process_map.h",
241 "process_map_factory.cc", 243 "process_map_factory.cc",
242 "process_map_factory.h", 244 "process_map_factory.h",
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 "extension_throttle_unittest.cc", 439 "extension_throttle_unittest.cc",
438 "file_highlighter_unittest.cc", 440 "file_highlighter_unittest.cc",
439 "file_reader_unittest.cc", 441 "file_reader_unittest.cc",
440 "image_loader_unittest.cc", 442 "image_loader_unittest.cc",
441 "info_map_unittest.cc", 443 "info_map_unittest.cc",
442 "lazy_background_task_queue_unittest.cc", 444 "lazy_background_task_queue_unittest.cc",
443 "load_monitoring_extension_host_queue_unittest.cc", 445 "load_monitoring_extension_host_queue_unittest.cc",
444 "management_policy_unittest.cc", 446 "management_policy_unittest.cc",
445 "mojo/keep_alive_impl_unittest.cc", 447 "mojo/keep_alive_impl_unittest.cc",
446 "policy_check_unittest.cc", 448 "policy_check_unittest.cc",
449 "preload_check_group_unittest.cc",
447 "process_manager_unittest.cc", 450 "process_manager_unittest.cc",
448 "process_map_unittest.cc", 451 "process_map_unittest.cc",
449 "quota_service_unittest.cc", 452 "quota_service_unittest.cc",
450 "runtime_data_unittest.cc", 453 "runtime_data_unittest.cc",
451 "sandboxed_unpacker_unittest.cc", 454 "sandboxed_unpacker_unittest.cc",
452 "updater/update_service_unittest.cc", 455 "updater/update_service_unittest.cc",
453 "value_store/leveldb_scoped_database_unittest.cc", 456 "value_store/leveldb_scoped_database_unittest.cc",
454 "value_store/leveldb_value_store_unittest.cc", 457 "value_store/leveldb_value_store_unittest.cc",
455 "value_store/testing_value_store_unittest.cc", 458 "value_store/testing_value_store_unittest.cc",
456 "value_store/value_store_change_unittest.cc", 459 "value_store/value_store_change_unittest.cc",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 "//net:test_support", 492 "//net:test_support",
490 "//third_party/leveldatabase", 493 "//third_party/leveldatabase",
491 "//third_party/zlib:zip", 494 "//third_party/zlib:zip",
492 ] 495 ]
493 496
494 if (is_chromeos) { 497 if (is_chromeos) {
495 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] 498 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ]
496 deps += [ "//chromeos:test_support" ] 499 deps += [ "//chromeos:test_support" ]
497 } 500 }
498 } 501 }
OLDNEW
« no previous file with comments | « no previous file | extensions/browser/preload_check_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698