| 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", | 15 "field_trial.cc", |
| 16 "field_trial.h", | 16 "field_trial.h", |
| 17 "icon_cacher.cc", | 17 "icon_cacher.cc", |
| 18 "icon_cacher.h", | 18 "icon_cacher.h", |
| 19 "metrics.cc", | 19 "metrics.cc", |
| 20 "metrics.h", | 20 "metrics.h", |
| 21 "most_visited_sites.cc", | 21 "most_visited_sites.cc", |
| 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 "popular_sites.cc", | 26 "popular_sites.cc", |
| 26 "popular_sites.h", | 27 "popular_sites.h", |
| 27 "pref_names.cc", | 28 "pref_names.cc", |
| 28 "pref_names.h", | 29 "pref_names.h", |
| 29 "switches.cc", | 30 "switches.cc", |
| 30 "switches.h", | 31 "switches.h", |
| 31 "webui/popular_sites_internals_message_handler.cc", | 32 "webui/popular_sites_internals_message_handler.cc", |
| 32 "webui/popular_sites_internals_message_handler.h", | 33 "webui/popular_sites_internals_message_handler.h", |
| 33 ] | 34 ] |
| 34 | 35 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "//testing/gmock", | 93 "//testing/gmock", |
| 93 "//testing/gtest", | 94 "//testing/gtest", |
| 94 "//ui/gfx:test_support", | 95 "//ui/gfx:test_support", |
| 95 ] | 96 ] |
| 96 } | 97 } |
| 97 | 98 |
| 98 if (is_android) { | 99 if (is_android) { |
| 99 java_cpp_enum("ntp_tiles_enums_java") { | 100 java_cpp_enum("ntp_tiles_enums_java") { |
| 100 sources = [ | 101 sources = [ |
| 101 "metrics.h", | 102 "metrics.h", |
| 102 "ntp_tile.h", | 103 "ntp_tile_source.h", |
| 103 ] | 104 ] |
| 104 } | 105 } |
| 105 } | 106 } |
| OLD | NEW |