| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 deps = [ | 85 deps = [ |
| 86 "//components/bookmarks/browser", | 86 "//components/bookmarks/browser", |
| 87 "//components/data_use_measurement/core", | 87 "//components/data_use_measurement/core", |
| 88 "//components/history/core/browser", | 88 "//components/history/core/browser", |
| 89 "//components/image_fetcher", | 89 "//components/image_fetcher", |
| 90 "//components/metrics", | 90 "//components/metrics", |
| 91 "//components/ntp_snippets/remote/proto", | 91 "//components/ntp_snippets/remote/proto", |
| 92 "//components/offline_pages", | 92 "//components/offline_pages", |
| 93 "//components/physical_web/data_source", |
| 93 "//components/sessions", | 94 "//components/sessions", |
| 94 "//components/strings", | 95 "//components/strings", |
| 95 "//components/sync_sessions", | 96 "//components/sync_sessions", |
| 96 "//components/translate/core/browser", | 97 "//components/translate/core/browser", |
| 97 "//components/variations", | 98 "//components/variations", |
| 98 "//components/variations/net", | 99 "//components/variations/net", |
| 99 "//third_party/icu/", | 100 "//third_party/icu/", |
| 100 "//ui/gfx", | 101 "//ui/gfx", |
| 101 ] | 102 ] |
| 102 } | 103 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 ":test_support", | 136 ":test_support", |
| 136 "//base", | 137 "//base", |
| 137 "//base/test:test_support", | 138 "//base/test:test_support", |
| 138 "//components/bookmarks/browser", | 139 "//components/bookmarks/browser", |
| 139 "//components/bookmarks/test", | 140 "//components/bookmarks/test", |
| 140 "//components/image_fetcher", | 141 "//components/image_fetcher", |
| 141 "//components/leveldb_proto:test_support", | 142 "//components/leveldb_proto:test_support", |
| 142 "//components/ntp_snippets/remote/proto", | 143 "//components/ntp_snippets/remote/proto", |
| 143 "//components/offline_pages", | 144 "//components/offline_pages", |
| 144 "//components/offline_pages:test_support", | 145 "//components/offline_pages:test_support", |
| 146 "//components/physical_web/data_source:test_support", |
| 145 "//components/sessions", | 147 "//components/sessions", |
| 146 "//components/sessions:test_support", | 148 "//components/sessions:test_support", |
| 147 "//components/signin/core/browser:test_support", | 149 "//components/signin/core/browser:test_support", |
| 148 "//components/signin/core/common", | 150 "//components/signin/core/common", |
| 149 "//components/strings", | 151 "//components/strings", |
| 150 "//components/sync:test_support_driver", | 152 "//components/sync:test_support_driver", |
| 151 "//components/sync_sessions", | 153 "//components/sync_sessions", |
| 152 "//components/variations", | 154 "//components/variations", |
| 153 "//net:test_support", | 155 "//net:test_support", |
| 154 "//testing/gtest", | 156 "//testing/gtest", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 167 ] | 169 ] |
| 168 | 170 |
| 169 deps = [ | 171 deps = [ |
| 170 ":ntp_snippets", | 172 ":ntp_snippets", |
| 171 "//base", | 173 "//base", |
| 172 "//components/offline_pages", | 174 "//components/offline_pages", |
| 173 "//components/offline_pages:test_support", | 175 "//components/offline_pages:test_support", |
| 174 "//testing/gmock", | 176 "//testing/gmock", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| OLD | NEW |