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