| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 "file_reader_unittest.cc", | 420 "file_reader_unittest.cc", |
| 421 "image_loader_unittest.cc", | 421 "image_loader_unittest.cc", |
| 422 "info_map_unittest.cc", | 422 "info_map_unittest.cc", |
| 423 "lazy_background_task_queue_unittest.cc", | 423 "lazy_background_task_queue_unittest.cc", |
| 424 "load_monitoring_extension_host_queue_unittest.cc", | 424 "load_monitoring_extension_host_queue_unittest.cc", |
| 425 "management_policy_unittest.cc", | 425 "management_policy_unittest.cc", |
| 426 "mojo/keep_alive_impl_unittest.cc", | 426 "mojo/keep_alive_impl_unittest.cc", |
| 427 "process_manager_unittest.cc", | 427 "process_manager_unittest.cc", |
| 428 "process_map_unittest.cc", | 428 "process_map_unittest.cc", |
| 429 "quota_service_unittest.cc", | 429 "quota_service_unittest.cc", |
| 430 "renderer_startup_helper_unittest.cc", |
| 430 "runtime_data_unittest.cc", | 431 "runtime_data_unittest.cc", |
| 431 "sandboxed_unpacker_unittest.cc", | 432 "sandboxed_unpacker_unittest.cc", |
| 432 "updater/update_service_unittest.cc", | 433 "updater/update_service_unittest.cc", |
| 433 "value_store/leveldb_scoped_database_unittest.cc", | 434 "value_store/leveldb_scoped_database_unittest.cc", |
| 434 "value_store/leveldb_value_store_unittest.cc", | 435 "value_store/leveldb_value_store_unittest.cc", |
| 435 "value_store/testing_value_store_unittest.cc", | 436 "value_store/testing_value_store_unittest.cc", |
| 436 "value_store/value_store_change_unittest.cc", | 437 "value_store/value_store_change_unittest.cc", |
| 437 "value_store/value_store_frontend_unittest.cc", | 438 "value_store/value_store_frontend_unittest.cc", |
| 438 "value_store/value_store_unittest.cc", | 439 "value_store/value_store_unittest.cc", |
| 439 "value_store/value_store_unittest.h", | 440 "value_store/value_store_unittest.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 468 "//net:test_support", | 469 "//net:test_support", |
| 469 "//third_party/leveldatabase", | 470 "//third_party/leveldatabase", |
| 470 "//third_party/zlib:zip", | 471 "//third_party/zlib:zip", |
| 471 ] | 472 ] |
| 472 | 473 |
| 473 if (is_chromeos) { | 474 if (is_chromeos) { |
| 474 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 475 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 475 deps += [ "//chromeos:test_support" ] | 476 deps += [ "//chromeos:test_support" ] |
| 476 } | 477 } |
| 477 } | 478 } |
| OLD | NEW |