| 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 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [] | 8 sources = [] |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "extension_throttle_test_support.h", | 390 "extension_throttle_test_support.h", |
| 391 "extension_throttle_unittest.cc", | 391 "extension_throttle_unittest.cc", |
| 392 "file_highlighter_unittest.cc", | 392 "file_highlighter_unittest.cc", |
| 393 "file_reader_unittest.cc", | 393 "file_reader_unittest.cc", |
| 394 "image_loader_unittest.cc", | 394 "image_loader_unittest.cc", |
| 395 "info_map_unittest.cc", | 395 "info_map_unittest.cc", |
| 396 "lazy_background_task_queue_unittest.cc", | 396 "lazy_background_task_queue_unittest.cc", |
| 397 "load_monitoring_extension_host_queue_unittest.cc", | 397 "load_monitoring_extension_host_queue_unittest.cc", |
| 398 "management_policy_unittest.cc", | 398 "management_policy_unittest.cc", |
| 399 "mojo/keep_alive_impl_unittest.cc", | 399 "mojo/keep_alive_impl_unittest.cc", |
| 400 "mojo/stash_backend_unittest.cc", | |
| 401 "process_manager_unittest.cc", | 400 "process_manager_unittest.cc", |
| 402 "process_map_unittest.cc", | 401 "process_map_unittest.cc", |
| 403 "quota_service_unittest.cc", | 402 "quota_service_unittest.cc", |
| 404 "runtime_data_unittest.cc", | 403 "runtime_data_unittest.cc", |
| 405 "sandboxed_unpacker_unittest.cc", | 404 "sandboxed_unpacker_unittest.cc", |
| 406 "updater/update_service_unittest.cc", | 405 "updater/update_service_unittest.cc", |
| 407 "value_store/leveldb_scoped_database_unittest.cc", | 406 "value_store/leveldb_scoped_database_unittest.cc", |
| 408 "value_store/leveldb_value_store_unittest.cc", | 407 "value_store/leveldb_value_store_unittest.cc", |
| 409 "value_store/testing_value_store_unittest.cc", | 408 "value_store/testing_value_store_unittest.cc", |
| 410 "value_store/value_store_change_unittest.cc", | 409 "value_store/value_store_change_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 438 "//net:test_support", | 437 "//net:test_support", |
| 439 "//third_party/leveldatabase", | 438 "//third_party/leveldatabase", |
| 440 "//third_party/zlib:zip", | 439 "//third_party/zlib:zip", |
| 441 ] | 440 ] |
| 442 | 441 |
| 443 if (is_chromeos) { | 442 if (is_chromeos) { |
| 444 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 443 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 445 deps += [ "//chromeos:test_support" ] | 444 deps += [ "//chromeos:test_support" ] |
| 446 } | 445 } |
| 447 } | 446 } |
| OLD | NEW |