| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 | 58 |
| 59 # Add only ":unit_tests" dependencies here. If your tests have dependencies | 59 # Add only ":unit_tests" dependencies here. If your tests have dependencies |
| 60 # (this would at least include the component itself), they should be on the | 60 # (this would at least include the component itself), they should be on the |
| 61 # test source set and not here. | 61 # test source set and not here. |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 "//base", | 64 "//base", |
| 65 "//components/autofill/core/browser:unit_tests", | 65 "//components/autofill/core/browser:unit_tests", |
| 66 "//components/autofill/core/common:unit_tests", | 66 "//components/autofill/core/common:unit_tests", |
| 67 "//components/base32:unit_tests", | |
| 68 "//components/bookmarks/browser:unit_tests", | 67 "//components/bookmarks/browser:unit_tests", |
| 69 "//components/bookmarks/managed:unit_tests", | 68 "//components/bookmarks/managed:unit_tests", |
| 70 "//components/browser_sync:unit_tests", | 69 "//components/browser_sync:unit_tests", |
| 71 "//components/browsing_data/core:unit_tests", | 70 "//components/browsing_data/core:unit_tests", |
| 72 "//components/bubble:unit_tests", | 71 "//components/bubble:unit_tests", |
| 73 "//components/captive_portal:unit_tests", | 72 "//components/captive_portal:unit_tests", |
| 74 "//components/client_update_protocol:unit_tests", | 73 "//components/client_update_protocol:unit_tests", |
| 75 "//components/cloud_devices/common:unit_tests", | 74 "//components/cloud_devices/common:unit_tests", |
| 76 "//components/component_updater:unit_tests", | 75 "//components/component_updater:unit_tests", |
| 77 "//components/content_settings/core/browser:unit_tests", | 76 "//components/content_settings/core/browser:unit_tests", |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "//testing/perf", | 497 "//testing/perf", |
| 499 "//url", | 498 "//url", |
| 500 ] | 499 ] |
| 501 | 500 |
| 502 if (!is_ios) { | 501 if (!is_ios) { |
| 503 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] | 502 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] |
| 504 deps += [ "//components/discardable_memory/common" ] | 503 deps += [ "//components/discardable_memory/common" ] |
| 505 } | 504 } |
| 506 } | 505 } |
| 507 } | 506 } |
| OLD | NEW |