| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("ntp_tiles") { | 9 static_library("ntp_tiles") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "most_visited_sites.h", | 22 "most_visited_sites.h", |
| 23 "ntp_tile.cc", | 23 "ntp_tile.cc", |
| 24 "ntp_tile.h", | 24 "ntp_tile.h", |
| 25 "ntp_tile_source.h", | 25 "ntp_tile_source.h", |
| 26 "popular_sites.cc", | 26 "popular_sites.cc", |
| 27 "popular_sites.h", | 27 "popular_sites.h", |
| 28 "pref_names.cc", | 28 "pref_names.cc", |
| 29 "pref_names.h", | 29 "pref_names.h", |
| 30 "switches.cc", | 30 "switches.cc", |
| 31 "switches.h", | 31 "switches.h", |
| 32 "webui/ntp_tiles_internals_message_handler.cc", |
| 33 "webui/ntp_tiles_internals_message_handler.h", |
| 34 "webui/ntp_tiles_internals_message_handler_client.h", |
| 32 "webui/popular_sites_internals_message_handler.cc", | 35 "webui/popular_sites_internals_message_handler.cc", |
| 33 "webui/popular_sites_internals_message_handler.h", | 36 "webui/popular_sites_internals_message_handler.h", |
| 37 "webui/popular_sites_internals_message_handler_client.h", |
| 34 ] | 38 ] |
| 35 | 39 |
| 36 public_deps = [ | 40 public_deps = [ |
| 37 "//base", | 41 "//base", |
| 38 "//components/history/core/browser", | 42 "//components/history/core/browser", |
| 39 "//components/suggestions", | 43 "//components/suggestions", |
| 40 ] | 44 ] |
| 41 deps = [ | 45 deps = [ |
| 42 "//components/data_use_measurement/core", | 46 "//components/data_use_measurement/core", |
| 43 "//components/favicon/core", | 47 "//components/favicon/core", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 101 } |
| 98 | 102 |
| 99 if (is_android) { | 103 if (is_android) { |
| 100 java_cpp_enum("ntp_tiles_enums_java") { | 104 java_cpp_enum("ntp_tiles_enums_java") { |
| 101 sources = [ | 105 sources = [ |
| 102 "metrics.h", | 106 "metrics.h", |
| 103 "ntp_tile_source.h", | 107 "ntp_tile_source.h", |
| 104 ] | 108 ] |
| 105 } | 109 } |
| 106 } | 110 } |
| OLD | NEW |