| 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 27 matching lines...) Expand all Loading... |
| 38 "ntp_snippets_database.h", | 38 "ntp_snippets_database.h", |
| 39 "ntp_snippets_fetcher.cc", | 39 "ntp_snippets_fetcher.cc", |
| 40 "ntp_snippets_fetcher.h", | 40 "ntp_snippets_fetcher.h", |
| 41 "ntp_snippets_scheduler.h", | 41 "ntp_snippets_scheduler.h", |
| 42 "ntp_snippets_service.cc", | 42 "ntp_snippets_service.cc", |
| 43 "ntp_snippets_service.h", | 43 "ntp_snippets_service.h", |
| 44 "ntp_snippets_status_service.cc", | 44 "ntp_snippets_status_service.cc", |
| 45 "ntp_snippets_status_service.h", | 45 "ntp_snippets_status_service.h", |
| 46 "offline_pages/offline_page_suggestions_provider.cc", | 46 "offline_pages/offline_page_suggestions_provider.cc", |
| 47 "offline_pages/offline_page_suggestions_provider.h", | 47 "offline_pages/offline_page_suggestions_provider.h", |
| 48 "physical_web_pages/physical_web_page_suggestions_provider.cc", |
| 49 "physical_web_pages/physical_web_page_suggestions_provider.h", |
| 48 "pref_names.cc", | 50 "pref_names.cc", |
| 49 "pref_names.h", | 51 "pref_names.h", |
| 50 "request_throttler.cc", | 52 "request_throttler.cc", |
| 51 "request_throttler.h", | 53 "request_throttler.h", |
| 52 "switches.cc", | 54 "switches.cc", |
| 53 "switches.h", | 55 "switches.h", |
| 54 ] | 56 ] |
| 55 | 57 |
| 56 public_deps = [ | 58 public_deps = [ |
| 57 "//base", | 59 "//base", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 testonly = true | 95 testonly = true |
| 94 sources = [ | 96 sources = [ |
| 95 "content_suggestions_service_unittest.cc", | 97 "content_suggestions_service_unittest.cc", |
| 96 "ntp_snippet_unittest.cc", | 98 "ntp_snippet_unittest.cc", |
| 97 "ntp_snippets_database_unittest.cc", | 99 "ntp_snippets_database_unittest.cc", |
| 98 "ntp_snippets_fetcher_unittest.cc", | 100 "ntp_snippets_fetcher_unittest.cc", |
| 99 "ntp_snippets_service_unittest.cc", | 101 "ntp_snippets_service_unittest.cc", |
| 100 "ntp_snippets_status_service_unittest.cc", | 102 "ntp_snippets_status_service_unittest.cc", |
| 101 "ntp_snippets_test_utils.cc", | 103 "ntp_snippets_test_utils.cc", |
| 102 "ntp_snippets_test_utils.h", | 104 "ntp_snippets_test_utils.h", |
| 105 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", |
| 103 "request_throttler_unittest.cc", | 106 "request_throttler_unittest.cc", |
| 104 ] | 107 ] |
| 105 | 108 |
| 106 deps = [ | 109 deps = [ |
| 107 ":ntp_snippets", | 110 ":ntp_snippets", |
| 108 "//base", | 111 "//base", |
| 109 "//base/test:test_support", | 112 "//base/test:test_support", |
| 110 "//components/image_fetcher", | 113 "//components/image_fetcher", |
| 111 "//components/leveldb_proto:test_support", | 114 "//components/leveldb_proto:test_support", |
| 112 "//components/signin/core/browser:test_support", | 115 "//components/signin/core/browser:test_support", |
| 113 "//components/signin/core/common", | 116 "//components/signin/core/common", |
| 114 "//components/sync_driver:test_support", | 117 "//components/sync_driver:test_support", |
| 115 "//components/variations", | 118 "//components/variations", |
| 116 "//net:test_support", | 119 "//net:test_support", |
| 117 "//testing/gtest", | 120 "//testing/gtest", |
| 118 "//third_party/icu/", | 121 "//third_party/icu/", |
| 119 ] | 122 ] |
| 120 } | 123 } |
| OLD | NEW |