| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "request_throttler.cc", | 56 "request_throttler.cc", |
| 57 "request_throttler.h", | 57 "request_throttler.h", |
| 58 "sessions/foreign_sessions_suggestions_provider.cc", |
| 59 "sessions/foreign_sessions_suggestions_provider.h", |
| 58 "switches.cc", | 60 "switches.cc", |
| 59 "switches.h", | 61 "switches.h", |
| 60 ] | 62 ] |
| 61 | 63 |
| 62 public_deps = [ | 64 public_deps = [ |
| 63 "//base", | 65 "//base", |
| 64 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
| 65 "//components/leveldb_proto", | 67 "//components/leveldb_proto", |
| 66 "//components/prefs", | 68 "//components/prefs", |
| 67 "//components/signin/core/browser", | 69 "//components/signin/core/browser", |
| 68 "//components/suggestions", | 70 "//components/suggestions", |
| 69 "//components/sync", | 71 "//components/sync", |
| 70 "//google_apis", | 72 "//google_apis", |
| 71 "//net", | 73 "//net", |
| 72 "//ui/base", | 74 "//ui/base", |
| 73 "//url", | 75 "//url", |
| 74 ] | 76 ] |
| 75 | 77 |
| 76 deps = [ | 78 deps = [ |
| 77 "//components/bookmarks/browser", | 79 "//components/bookmarks/browser", |
| 78 "//components/data_use_measurement/core", | 80 "//components/data_use_measurement/core", |
| 79 "//components/history/core/browser", | 81 "//components/history/core/browser", |
| 80 "//components/image_fetcher", | 82 "//components/image_fetcher", |
| 81 "//components/metrics", | 83 "//components/metrics", |
| 82 "//components/ntp_snippets/proto", | 84 "//components/ntp_snippets/proto", |
| 83 "//components/offline_pages", | 85 "//components/offline_pages", |
| 86 "//components/sessions", |
| 84 "//components/strings", | 87 "//components/strings", |
| 88 "//components/sync_sessions", |
| 85 "//components/variations", | 89 "//components/variations", |
| 86 "//components/variations/net", | 90 "//components/variations/net", |
| 87 "//third_party/icu/", | 91 "//third_party/icu/", |
| 88 "//ui/gfx", | 92 "//ui/gfx", |
| 89 ] | 93 ] |
| 90 } | 94 } |
| 91 | 95 |
| 92 if (is_android) { | 96 if (is_android) { |
| 93 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 97 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 94 sources = [ | 98 sources = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "//components/signin/core/common", | 131 "//components/signin/core/common", |
| 128 "//components/strings", | 132 "//components/strings", |
| 129 "//components/sync:test_support_sync_driver", | 133 "//components/sync:test_support_sync_driver", |
| 130 "//components/variations", | 134 "//components/variations", |
| 131 "//net:test_support", | 135 "//net:test_support", |
| 132 "//testing/gtest", | 136 "//testing/gtest", |
| 133 "//third_party/icu/", | 137 "//third_party/icu/", |
| 134 "//ui/gfx:test_support", | 138 "//ui/gfx:test_support", |
| 135 ] | 139 ] |
| 136 } | 140 } |
| OLD | NEW |