| 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 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 group("browser") { | 10 group("browser") { |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "//net:test_support", | 582 "//net:test_support", |
| 583 "//services/device/public/interfaces", | 583 "//services/device/public/interfaces", |
| 584 "//storage/browser:test_support", | 584 "//storage/browser:test_support", |
| 585 "//third_party/leveldatabase", | 585 "//third_party/leveldatabase", |
| 586 "//third_party/zlib/google:zip", | 586 "//third_party/zlib/google:zip", |
| 587 ] | 587 ] |
| 588 | 588 |
| 589 if (is_chromeos) { | 589 if (is_chromeos) { |
| 590 sources += [ | 590 sources += [ |
| 591 "api/audio/audio_device_id_calculator_unittest.cc", | 591 "api/audio/audio_device_id_calculator_unittest.cc", |
| 592 "api/lock_screen_data/data_item_unittest.cc", |
| 593 "api/lock_screen_data/lock_screen_item_storage_unittest.cc", |
| 592 "api/media_perception_private/conversion_utils_unittest.cc", | 594 "api/media_perception_private/conversion_utils_unittest.cc", |
| 593 "api/media_perception_private/media_perception_api_manager_unittest.cc", | 595 "api/media_perception_private/media_perception_api_manager_unittest.cc", |
| 594 "api/webcam_private/visca_webcam_unittest.cc", | 596 "api/webcam_private/visca_webcam_unittest.cc", |
| 595 ] | 597 ] |
| 596 | 598 |
| 597 deps += [ | 599 deps += [ |
| 598 "//chromeos:media_perception_proto", | 600 "//chromeos:media_perception_proto", |
| 599 "//chromeos:test_support", | 601 "//chromeos:test_support", |
| 600 ] | 602 ] |
| 601 } | 603 } |
| 602 } | 604 } |
| OLD | NEW |