| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "ntp_snippets_service.cc", | 46 "ntp_snippets_service.cc", |
| 47 "ntp_snippets_service.h", | 47 "ntp_snippets_service.h", |
| 48 "ntp_snippets_status_service.cc", | 48 "ntp_snippets_status_service.cc", |
| 49 "ntp_snippets_status_service.h", | 49 "ntp_snippets_status_service.h", |
| 50 "offline_pages/offline_page_suggestions_provider.cc", | 50 "offline_pages/offline_page_suggestions_provider.cc", |
| 51 "offline_pages/offline_page_suggestions_provider.h", | 51 "offline_pages/offline_page_suggestions_provider.h", |
| 52 "physical_web_pages/physical_web_page_suggestions_provider.cc", | 52 "physical_web_pages/physical_web_page_suggestions_provider.cc", |
| 53 "physical_web_pages/physical_web_page_suggestions_provider.h", | 53 "physical_web_pages/physical_web_page_suggestions_provider.h", |
| 54 "pref_names.cc", | 54 "pref_names.cc", |
| 55 "pref_names.h", | 55 "pref_names.h", |
| 56 "pref_util.cc", |
| 57 "pref_util.h", |
| 56 "request_throttler.cc", | 58 "request_throttler.cc", |
| 57 "request_throttler.h", | 59 "request_throttler.h", |
| 60 "sessions/foreign_sessions_suggestions_provider.cc", |
| 61 "sessions/foreign_sessions_suggestions_provider.h", |
| 62 "sessions/tab_delegate_sync_adapter.cc", |
| 63 "sessions/tab_delegate_sync_adapter.h", |
| 58 "switches.cc", | 64 "switches.cc", |
| 59 "switches.h", | 65 "switches.h", |
| 60 "user_classifier.cc", | 66 "user_classifier.cc", |
| 61 "user_classifier.h", | 67 "user_classifier.h", |
| 62 ] | 68 ] |
| 63 | 69 |
| 64 public_deps = [ | 70 public_deps = [ |
| 65 "//base", | 71 "//base", |
| 66 "//components/keyed_service/core", | 72 "//components/keyed_service/core", |
| 67 "//components/leveldb_proto", | 73 "//components/leveldb_proto", |
| 68 "//components/prefs", | 74 "//components/prefs", |
| 69 "//components/signin/core/browser", | 75 "//components/signin/core/browser", |
| 70 "//components/suggestions", | 76 "//components/suggestions", |
| 71 "//components/sync", | 77 "//components/sync", |
| 72 "//google_apis", | 78 "//google_apis", |
| 73 "//net", | 79 "//net", |
| 74 "//ui/base", | 80 "//ui/base", |
| 75 "//url", | 81 "//url", |
| 76 ] | 82 ] |
| 77 | 83 |
| 78 deps = [ | 84 deps = [ |
| 79 "//components/bookmarks/browser", | 85 "//components/bookmarks/browser", |
| 80 "//components/data_use_measurement/core", | 86 "//components/data_use_measurement/core", |
| 81 "//components/history/core/browser", | 87 "//components/history/core/browser", |
| 82 "//components/image_fetcher", | 88 "//components/image_fetcher", |
| 83 "//components/metrics", | 89 "//components/metrics", |
| 84 "//components/ntp_snippets/proto", | 90 "//components/ntp_snippets/proto", |
| 85 "//components/offline_pages", | 91 "//components/offline_pages", |
| 92 "//components/sessions", |
| 86 "//components/strings", | 93 "//components/strings", |
| 94 "//components/sync_sessions", |
| 87 "//components/variations", | 95 "//components/variations", |
| 88 "//components/variations/net", | 96 "//components/variations/net", |
| 89 "//third_party/icu/", | 97 "//third_party/icu/", |
| 90 "//ui/gfx", | 98 "//ui/gfx", |
| 91 ] | 99 ] |
| 92 } | 100 } |
| 93 | 101 |
| 94 if (is_android) { | 102 if (is_android) { |
| 95 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 103 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 96 sources = [ | 104 sources = [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 112 "ntp_snippet_unittest.cc", | 120 "ntp_snippet_unittest.cc", |
| 113 "ntp_snippets_database_unittest.cc", | 121 "ntp_snippets_database_unittest.cc", |
| 114 "ntp_snippets_fetcher_unittest.cc", | 122 "ntp_snippets_fetcher_unittest.cc", |
| 115 "ntp_snippets_service_unittest.cc", | 123 "ntp_snippets_service_unittest.cc", |
| 116 "ntp_snippets_status_service_unittest.cc", | 124 "ntp_snippets_status_service_unittest.cc", |
| 117 "ntp_snippets_test_utils.cc", | 125 "ntp_snippets_test_utils.cc", |
| 118 "ntp_snippets_test_utils.h", | 126 "ntp_snippets_test_utils.h", |
| 119 "offline_pages/offline_page_suggestions_provider_unittest.cc", | 127 "offline_pages/offline_page_suggestions_provider_unittest.cc", |
| 120 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", | 128 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", |
| 121 "request_throttler_unittest.cc", | 129 "request_throttler_unittest.cc", |
| 130 "sessions/foreign_sessions_suggestions_provider_unittest.cc", |
| 122 ] | 131 ] |
| 123 | 132 |
| 124 deps = [ | 133 deps = [ |
| 125 ":ntp_snippets", | 134 ":ntp_snippets", |
| 126 "//base", | 135 "//base", |
| 127 "//base/test:test_support", | 136 "//base/test:test_support", |
| 128 "//components/bookmarks/browser", | 137 "//components/bookmarks/browser", |
| 129 "//components/bookmarks/test", | 138 "//components/bookmarks/test", |
| 130 "//components/image_fetcher", | 139 "//components/image_fetcher", |
| 131 "//components/leveldb_proto:test_support", | 140 "//components/leveldb_proto:test_support", |
| 132 "//components/offline_pages", | 141 "//components/offline_pages", |
| 133 "//components/offline_pages:test_support", | 142 "//components/offline_pages:test_support", |
| 143 "//components/sessions", |
| 144 "//components/sessions:test_support", |
| 134 "//components/signin/core/browser:test_support", | 145 "//components/signin/core/browser:test_support", |
| 135 "//components/signin/core/common", | 146 "//components/signin/core/common", |
| 136 "//components/strings", | 147 "//components/strings", |
| 137 "//components/sync:test_support_sync_driver", | 148 "//components/sync:test_support_sync_driver", |
| 149 "//components/sync_sessions", |
| 138 "//components/variations", | 150 "//components/variations", |
| 139 "//net:test_support", | 151 "//net:test_support", |
| 140 "//testing/gtest", | 152 "//testing/gtest", |
| 141 "//third_party/icu/", | 153 "//third_party/icu/", |
| 142 "//ui/gfx:test_support", | 154 "//ui/gfx:test_support", |
| 143 ] | 155 ] |
| 144 } | 156 } |
| OLD | NEW |