Chromium Code Reviews| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 157 ] | 158 ] |
| 158 } | 159 } |
| 159 | 160 |
| 160 source_set("test_support") { | 161 source_set("test_support") { |
| 161 testonly = true | 162 testonly = true |
| 162 sources = [ | 163 sources = [ |
| 163 "mock_content_suggestions_provider_observer.cc", | 164 "mock_content_suggestions_provider_observer.cc", |
| 164 "mock_content_suggestions_provider_observer.h", | 165 "mock_content_suggestions_provider_observer.h", |
| 165 "offline_pages/offline_pages_test_utils.cc", | 166 "offline_pages/offline_pages_test_utils.cc", |
| 166 "offline_pages/offline_pages_test_utils.h", | 167 "offline_pages/offline_pages_test_utils.h", |
| 168 "physical_web_pages/fake_physical_web_data_source.cc", | |
| 169 "physical_web_pages/fake_physical_web_data_source.h", | |
|
Olivier
2016/11/24 08:07:36
Can this be in the physical web component?
vitaliii
2016/11/29 06:54:34
Done in codereview.chromium.org/2529303002.
| |
| 167 ] | 170 ] |
| 168 | 171 |
| 169 deps = [ | 172 deps = [ |
| 170 ":ntp_snippets", | 173 ":ntp_snippets", |
| 171 "//base", | 174 "//base", |
| 172 "//components/offline_pages", | 175 "//components/offline_pages", |
| 173 "//components/offline_pages:test_support", | 176 "//components/offline_pages:test_support", |
| 177 "//components/physical_web/data_source", | |
| 174 "//testing/gmock", | 178 "//testing/gmock", |
| 175 ] | 179 ] |
| 176 } | 180 } |
| OLD | NEW |