| 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 } |
| 11 | 11 |
| 12 # GYP version: components/ntp_snippets.gypi:ntp_snippets | 12 # GYP version: components/ntp_snippets.gypi:ntp_snippets |
| 13 static_library("ntp_snippets") { | 13 static_library("ntp_snippets") { |
| 14 sources = [ | 14 sources = [ |
| 15 "bookmarks/bookmark_last_visit_utils.cc", |
| 16 "bookmarks/bookmark_last_visit_utils.h", |
| 15 "content_suggestion.cc", | 17 "content_suggestion.cc", |
| 16 "content_suggestion.h", | 18 "content_suggestion.h", |
| 17 "content_suggestions_category.h", | 19 "content_suggestions_category.h", |
| 18 "content_suggestions_category_status.cc", | 20 "content_suggestions_category_status.cc", |
| 19 "content_suggestions_category_status.h", | 21 "content_suggestions_category_status.h", |
| 20 "content_suggestions_provider.cc", | 22 "content_suggestions_provider.cc", |
| 21 "content_suggestions_provider.h", | 23 "content_suggestions_provider.h", |
| 22 "content_suggestions_service.cc", | 24 "content_suggestions_service.cc", |
| 23 "content_suggestions_service.h", | 25 "content_suggestions_service.h", |
| 24 "ntp_snippet.cc", | 26 "ntp_snippet.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 51 "//components/prefs", | 53 "//components/prefs", |
| 52 "//components/signin/core/browser", | 54 "//components/signin/core/browser", |
| 53 "//components/suggestions", | 55 "//components/suggestions", |
| 54 "//components/sync_driver", | 56 "//components/sync_driver", |
| 55 "//google_apis", | 57 "//google_apis", |
| 56 "//net", | 58 "//net", |
| 57 "//url", | 59 "//url", |
| 58 ] | 60 ] |
| 59 | 61 |
| 60 deps = [ | 62 deps = [ |
| 63 "//components/bookmarks/browser", |
| 61 "//components/data_use_measurement/core", | 64 "//components/data_use_measurement/core", |
| 62 "//components/image_fetcher", | 65 "//components/image_fetcher", |
| 63 "//components/metrics", | 66 "//components/metrics", |
| 64 "//components/ntp_snippets/proto", | 67 "//components/ntp_snippets/proto", |
| 65 "//components/offline_pages", | 68 "//components/offline_pages", |
| 66 "//components/variations", | 69 "//components/variations", |
| 67 "//components/variations/net", | 70 "//components/variations/net", |
| 68 "//third_party/icu/", | 71 "//third_party/icu/", |
| 69 "//ui/gfx", | 72 "//ui/gfx", |
| 70 ] | 73 ] |
| (...skipping 29 matching lines...) Expand all Loading... |
| 100 "//components/leveldb_proto:test_support", | 103 "//components/leveldb_proto:test_support", |
| 101 "//components/signin/core/browser:test_support", | 104 "//components/signin/core/browser:test_support", |
| 102 "//components/signin/core/common", | 105 "//components/signin/core/common", |
| 103 "//components/sync_driver:test_support", | 106 "//components/sync_driver:test_support", |
| 104 "//components/variations", | 107 "//components/variations", |
| 105 "//net:test_support", | 108 "//net:test_support", |
| 106 "//testing/gtest", | 109 "//testing/gtest", |
| 107 "//third_party/icu/", | 110 "//third_party/icu/", |
| 108 ] | 111 ] |
| 109 } | 112 } |
| OLD | NEW |