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