| 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 = [ |
| 11 "constants.cc", | 11 "constants.cc", |
| 12 "constants.h", | 12 "constants.h", |
| 13 "field_trial.cc", |
| 14 "field_trial.h", |
| 13 "icon_cacher.cc", | 15 "icon_cacher.cc", |
| 14 "icon_cacher.h", | 16 "icon_cacher.h", |
| 15 "metrics.cc", | 17 "metrics.cc", |
| 16 "metrics.h", | 18 "metrics.h", |
| 17 "most_visited_sites.cc", | 19 "most_visited_sites.cc", |
| 18 "most_visited_sites.h", | 20 "most_visited_sites.h", |
| 19 "ntp_tile.cc", | 21 "ntp_tile.cc", |
| 20 "ntp_tile.h", | 22 "ntp_tile.h", |
| 21 "popular_sites.cc", | 23 "popular_sites.cc", |
| 22 "popular_sites.h", | 24 "popular_sites.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 } | 77 } |
| 76 | 78 |
| 77 if (is_android) { | 79 if (is_android) { |
| 78 java_cpp_enum("ntp_tiles_enums_java") { | 80 java_cpp_enum("ntp_tiles_enums_java") { |
| 79 sources = [ | 81 sources = [ |
| 80 "metrics.h", | 82 "metrics.h", |
| 81 "ntp_tile.h", | 83 "ntp_tile.h", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| 84 } | 86 } |
| OLD | NEW |