| 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", | 15 "bookmarks/bookmark_last_visit_utils.cc", |
| 16 "bookmarks/bookmark_last_visit_utils.h", | 16 "bookmarks/bookmark_last_visit_utils.h", |
| 17 "bookmarks/bookmark_suggestions_provider.cc", |
| 18 "bookmarks/bookmark_suggestions_provider.h", |
| 17 "category.cc", | 19 "category.cc", |
| 18 "category.h", | 20 "category.h", |
| 19 "category_factory.cc", | 21 "category_factory.cc", |
| 20 "category_factory.h", | 22 "category_factory.h", |
| 21 "category_status.cc", | 23 "category_status.cc", |
| 22 "category_status.h", | 24 "category_status.h", |
| 23 "content_suggestion.cc", | 25 "content_suggestion.cc", |
| 24 "content_suggestion.h", | 26 "content_suggestion.h", |
| 25 "content_suggestions_provider.cc", | 27 "content_suggestions_provider.cc", |
| 26 "content_suggestions_provider.h", | 28 "content_suggestions_provider.h", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "//components/leveldb_proto:test_support", | 110 "//components/leveldb_proto:test_support", |
| 109 "//components/signin/core/browser:test_support", | 111 "//components/signin/core/browser:test_support", |
| 110 "//components/signin/core/common", | 112 "//components/signin/core/common", |
| 111 "//components/sync_driver:test_support", | 113 "//components/sync_driver:test_support", |
| 112 "//components/variations", | 114 "//components/variations", |
| 113 "//net:test_support", | 115 "//net:test_support", |
| 114 "//testing/gtest", | 116 "//testing/gtest", |
| 115 "//third_party/icu/", | 117 "//third_party/icu/", |
| 116 ] | 118 ] |
| 117 } | 119 } |
| OLD | NEW |