| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "//base", | 93 "//base", |
| 94 "//base:i18n", | 94 "//base:i18n", |
| 95 "//components/favicon_base", | 95 "//components/favicon_base", |
| 96 "//components/history/core/common", | 96 "//components/history/core/common", |
| 97 "//components/keyed_service/core", | 97 "//components/keyed_service/core", |
| 98 "//components/prefs", | 98 "//components/prefs", |
| 99 "//components/query_parser", | 99 "//components/query_parser", |
| 100 "//components/signin/core/browser", | 100 "//components/signin/core/browser", |
| 101 "//components/sync", | 101 "//components/sync", |
| 102 "//components/url_formatter", | 102 "//components/url_formatter", |
| 103 "//components/variations", |
| 103 "//components/version_info", | 104 "//components/version_info", |
| 104 "//google_apis", | 105 "//google_apis", |
| 105 "//net", | 106 "//net", |
| 106 "//sql", | 107 "//sql", |
| 107 "//third_party/sqlite", | 108 "//third_party/sqlite", |
| 108 "//ui/base", | 109 "//ui/base", |
| 109 "//ui/gfx", | 110 "//ui/gfx", |
| 110 "//url", | 111 "//url", |
| 111 ] | 112 ] |
| 112 | 113 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "//sql:test_support", | 213 "//sql:test_support", |
| 213 "//testing/gtest", | 214 "//testing/gtest", |
| 214 "//ui/gfx", | 215 "//ui/gfx", |
| 215 "//ui/gfx:test_support", | 216 "//ui/gfx:test_support", |
| 216 "//url", | 217 "//url", |
| 217 ] | 218 ] |
| 218 if (is_android) { | 219 if (is_android) { |
| 219 sources += [ "android/android_history_types_unittest.cc" ] | 220 sources += [ "android/android_history_types_unittest.cc" ] |
| 220 } | 221 } |
| 221 } | 222 } |
| OLD | NEW |