| 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 # GYP version: components/ntp_snippets.gypi:ntp_snippets | 5 # GYP version: components/ntp_snippets.gypi:ntp_snippets |
| 6 source_set("ntp_snippets") { | 6 source_set("ntp_snippets") { |
| 7 sources = [ | 7 sources = [ |
| 8 "inner_iterator.h", | 8 "inner_iterator.h", |
| 9 "ntp_snippet.cc", | 9 "ntp_snippet.cc", |
| 10 "ntp_snippet.h", | 10 "ntp_snippet.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//components/metrics", | 34 "//components/metrics", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 source_set("unit_tests") { | 38 source_set("unit_tests") { |
| 39 testonly = true | 39 testonly = true |
| 40 sources = [ | 40 sources = [ |
| 41 "inner_iterator_unittest.cc", | 41 "inner_iterator_unittest.cc", |
| 42 "ntp_snippets_fetcher_unittest.cc", | |
| 43 "ntp_snippets_service_unittest.cc", | 42 "ntp_snippets_service_unittest.cc", |
| 44 ] | 43 ] |
| 45 | 44 |
| 46 deps = [ | 45 deps = [ |
| 47 ":ntp_snippets", | 46 ":ntp_snippets", |
| 48 "//base", | 47 "//base", |
| 49 "//base/test:test_support", | 48 "//base/test:test_support", |
| 50 "//components/signin/core/browser:test_support", | 49 "//components/signin/core/browser:test_support", |
| 51 "//net:test_support", | 50 "//net:test_support", |
| 52 "//testing/gtest", | 51 "//testing/gtest", |
| 53 ] | 52 ] |
| 54 } | 53 } |
| OLD | NEW |