| 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "delete_directive_handler.cc", | 7 "delete_directive_handler.cc", |
| 8 "delete_directive_handler.h", | 8 "delete_directive_handler.h", |
| 9 "download_constants.h", | 9 "download_constants.h", |
| 10 "download_database.cc", | 10 "download_database.cc", |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 ":browser", | 199 ":browser", |
| 200 ":unit_tests_bundle_data", | 200 ":unit_tests_bundle_data", |
| 201 "//base", | 201 "//base", |
| 202 "//base/test:test_support", | 202 "//base/test:test_support", |
| 203 "//components/favicon_base", | 203 "//components/favicon_base", |
| 204 "//components/history/core/common", | 204 "//components/history/core/common", |
| 205 "//components/history/core/test", | 205 "//components/history/core/test", |
| 206 "//components/prefs:test_support", | 206 "//components/prefs:test_support", |
| 207 "//components/signin/core/browser", | 207 "//components/signin/core/browser", |
| 208 "//components/signin/core/browser:test_support", | 208 "//components/signin/core/browser:test_support", |
| 209 "//components/sync:test_support_sync_driver", | 209 "//components/sync", |
| 210 "//components/sync:test_support_sync_model", | 210 "//components/sync:test_support_model", |
| 211 "//sql", | 211 "//sql", |
| 212 "//sql:test_support", | 212 "//sql:test_support", |
| 213 "//testing/gtest", | 213 "//testing/gtest", |
| 214 "//ui/gfx", | 214 "//ui/gfx", |
| 215 "//ui/gfx:test_support", | 215 "//ui/gfx:test_support", |
| 216 "//url", | 216 "//url", |
| 217 ] | 217 ] |
| 218 if (is_android) { | 218 if (is_android) { |
| 219 sources += [ "android/android_history_types_unittest.cc" ] | 219 sources += [ "android/android_history_types_unittest.cc" ] |
| 220 } | 220 } |
| 221 } | 221 } |
| OLD | NEW |