| 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 | 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 Loading... |
| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "extension_throttle_unittest.cc", | 444 "extension_throttle_unittest.cc", |
| 443 "file_highlighter_unittest.cc", | 445 "file_highlighter_unittest.cc", |
| 444 "file_reader_unittest.cc", | 446 "file_reader_unittest.cc", |
| 445 "image_loader_unittest.cc", | 447 "image_loader_unittest.cc", |
| 446 "info_map_unittest.cc", | 448 "info_map_unittest.cc", |
| 447 "lazy_background_task_queue_unittest.cc", | 449 "lazy_background_task_queue_unittest.cc", |
| 448 "load_monitoring_extension_host_queue_unittest.cc", | 450 "load_monitoring_extension_host_queue_unittest.cc", |
| 449 "management_policy_unittest.cc", | 451 "management_policy_unittest.cc", |
| 450 "mojo/keep_alive_impl_unittest.cc", | 452 "mojo/keep_alive_impl_unittest.cc", |
| 451 "policy_check_unittest.cc", | 453 "policy_check_unittest.cc", |
| 454 "preload_check_group_unittest.cc", |
| 452 "process_manager_unittest.cc", | 455 "process_manager_unittest.cc", |
| 453 "process_map_unittest.cc", | 456 "process_map_unittest.cc", |
| 454 "quota_service_unittest.cc", | 457 "quota_service_unittest.cc", |
| 455 "requirements_checker_unittest.cc", | 458 "requirements_checker_unittest.cc", |
| 456 "runtime_data_unittest.cc", | 459 "runtime_data_unittest.cc", |
| 457 "sandboxed_unpacker_unittest.cc", | 460 "sandboxed_unpacker_unittest.cc", |
| 458 "updater/update_service_unittest.cc", | 461 "updater/update_service_unittest.cc", |
| 459 "value_store/leveldb_scoped_database_unittest.cc", | 462 "value_store/leveldb_scoped_database_unittest.cc", |
| 460 "value_store/leveldb_value_store_unittest.cc", | 463 "value_store/leveldb_value_store_unittest.cc", |
| 461 "value_store/testing_value_store_unittest.cc", | 464 "value_store/testing_value_store_unittest.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 "//net:test_support", | 499 "//net:test_support", |
| 497 "//third_party/leveldatabase", | 500 "//third_party/leveldatabase", |
| 498 "//third_party/zlib:zip", | 501 "//third_party/zlib:zip", |
| 499 ] | 502 ] |
| 500 | 503 |
| 501 if (is_chromeos) { | 504 if (is_chromeos) { |
| 502 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 505 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 503 deps += [ "//chromeos:test_support" ] | 506 deps += [ "//chromeos:test_support" ] |
| 504 } | 507 } |
| 505 } | 508 } |
| OLD | NEW |