| 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 16 matching lines...) Expand all Loading... |
| 27 "ntp_snippets_constants.h", | 27 "ntp_snippets_constants.h", |
| 28 "ntp_snippets_database.cc", | 28 "ntp_snippets_database.cc", |
| 29 "ntp_snippets_database.h", | 29 "ntp_snippets_database.h", |
| 30 "ntp_snippets_fetcher.cc", | 30 "ntp_snippets_fetcher.cc", |
| 31 "ntp_snippets_fetcher.h", | 31 "ntp_snippets_fetcher.h", |
| 32 "ntp_snippets_scheduler.h", | 32 "ntp_snippets_scheduler.h", |
| 33 "ntp_snippets_service.cc", | 33 "ntp_snippets_service.cc", |
| 34 "ntp_snippets_service.h", | 34 "ntp_snippets_service.h", |
| 35 "ntp_snippets_status_service.cc", | 35 "ntp_snippets_status_service.cc", |
| 36 "ntp_snippets_status_service.h", | 36 "ntp_snippets_status_service.h", |
| 37 "offline_pages/offline_page_suggestions_provider.cc", |
| 38 "offline_pages/offline_page_suggestions_provider.h", |
| 37 "pref_names.cc", | 39 "pref_names.cc", |
| 38 "pref_names.h", | 40 "pref_names.h", |
| 39 "switches.cc", | 41 "switches.cc", |
| 40 "switches.h", | 42 "switches.h", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 public_deps = [ | 45 public_deps = [ |
| 44 "//base", | 46 "//base", |
| 45 "//components/keyed_service/core", | 47 "//components/keyed_service/core", |
| 46 "//components/leveldb_proto", | 48 "//components/leveldb_proto", |
| 47 "//components/prefs", | 49 "//components/prefs", |
| 48 "//components/signin/core/browser", | 50 "//components/signin/core/browser", |
| 49 "//components/suggestions", | 51 "//components/suggestions", |
| 50 "//components/sync_driver", | 52 "//components/sync_driver", |
| 51 "//google_apis", | 53 "//google_apis", |
| 52 "//net", | 54 "//net", |
| 53 "//url", | 55 "//url", |
| 54 ] | 56 ] |
| 55 | 57 |
| 56 deps = [ | 58 deps = [ |
| 57 "//components/data_use_measurement/core", | 59 "//components/data_use_measurement/core", |
| 58 "//components/image_fetcher", | 60 "//components/image_fetcher", |
| 59 "//components/metrics", | 61 "//components/metrics", |
| 60 "//components/ntp_snippets/proto", | 62 "//components/ntp_snippets/proto", |
| 63 "//components/offline_pages", |
| 61 "//components/variations", | 64 "//components/variations", |
| 62 "//third_party/icu/", | 65 "//third_party/icu/", |
| 63 "//ui/gfx", | 66 "//ui/gfx", |
| 64 ] | 67 ] |
| 65 } | 68 } |
| 66 | 69 |
| 67 if (is_android) { | 70 if (is_android) { |
| 68 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 71 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 69 sources = [ | 72 sources = [ |
| 70 "ntp_snippets_status_service.h", | 73 "ntp_snippets_status_service.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 92 "//components/leveldb_proto:test_support", | 95 "//components/leveldb_proto:test_support", |
| 93 "//components/signin/core/browser:test_support", | 96 "//components/signin/core/browser:test_support", |
| 94 "//components/signin/core/common", | 97 "//components/signin/core/common", |
| 95 "//components/sync_driver:test_support", | 98 "//components/sync_driver:test_support", |
| 96 "//components/variations", | 99 "//components/variations", |
| 97 "//net:test_support", | 100 "//net:test_support", |
| 98 "//testing/gtest", | 101 "//testing/gtest", |
| 99 "//third_party/icu/", | 102 "//third_party/icu/", |
| 100 ] | 103 ] |
| 101 } | 104 } |
| OLD | NEW |