Chromium Code Reviews| 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", |
| 11 "ntp_snippets_fetcher.cc", | 11 "ntp_snippets_fetcher.cc", |
| 12 "ntp_snippets_fetcher.h", | 12 "ntp_snippets_fetcher.h", |
| 13 "ntp_snippets_scheduler.h", | 13 "ntp_snippets_scheduler.h", |
| 14 "ntp_snippets_service.cc", | 14 "ntp_snippets_service.cc", |
| 15 "ntp_snippets_service.h", | 15 "ntp_snippets_service.h", |
| 16 "pref_names.cc", | 16 "pref_names.cc", |
| 17 "pref_names.h", | 17 "pref_names.h", |
| 18 "switches.cc", | 18 "switches.cc", |
| 19 "switches.h", | 19 "switches.h", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 public_deps = [ | 22 public_deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//components/data_use_measurement/core", | |
|
Marc Treib
2016/05/02 11:21:38
This can go into the non-public deps
sfiera
2016/05/02 11:55:46
Done.
| |
| 24 "//components/keyed_service/core", | 25 "//components/keyed_service/core", |
| 25 "//components/prefs", | 26 "//components/prefs", |
| 26 "//components/signin/core/browser", | 27 "//components/signin/core/browser", |
| 27 "//components/suggestions", | 28 "//components/suggestions", |
| 28 "//google_apis", | 29 "//google_apis", |
| 29 "//net", | 30 "//net", |
| 30 "//url", | 31 "//url", |
| 31 ] | 32 ] |
| 32 | 33 |
| 33 deps = [ | 34 deps = [ |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 44 | 45 |
| 45 deps = [ | 46 deps = [ |
| 46 ":ntp_snippets", | 47 ":ntp_snippets", |
| 47 "//base", | 48 "//base", |
| 48 "//base/test:test_support", | 49 "//base/test:test_support", |
| 49 "//components/signin/core/browser:test_support", | 50 "//components/signin/core/browser:test_support", |
| 50 "//net:test_support", | 51 "//net:test_support", |
| 51 "//testing/gtest", | 52 "//testing/gtest", |
| 52 ] | 53 ] |
| 53 } | 54 } |
| OLD | NEW |