| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("core") { | 9 static_library("core") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "browsing_data_utils_unittest.cc", | 53 "browsing_data_utils_unittest.cc", |
| 54 "history_notice_utils_unittest.cc", | 54 "history_notice_utils_unittest.cc", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 ":core", | 58 ":core", |
| 59 "//base", | 59 "//base", |
| 60 "//components/autofill/core/browser:browser", | 60 "//components/autofill/core/browser:browser", |
| 61 "//components/history/core/test:test", | 61 "//components/history/core/test:test", |
| 62 "//components/signin/core/browser:test_support", | 62 "//components/signin/core/browser:test_support", |
| 63 "//components/sync:test_support_sync_driver", | 63 "//components/sync", |
| 64 "//components/sync/protocol:protocol", | 64 "//components/sync:test_support_driver", |
| 65 "//components/version_info:version_info", | 65 "//components/version_info:version_info", |
| 66 "//net", | 66 "//net", |
| 67 "//testing/gtest", | 67 "//testing/gtest", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| OLD | NEW |