| 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 10 matching lines...) Expand all Loading... |
| 21 "switches.cc", | 21 "switches.cc", |
| 22 "switches.h", | 22 "switches.h", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 public_deps = [ | 25 public_deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//components/history/core/browser", | 27 "//components/history/core/browser", |
| 28 "//components/suggestions", | 28 "//components/suggestions", |
| 29 ] | 29 ] |
| 30 deps = [ | 30 deps = [ |
| 31 "//components/data_use_measurement/core", |
| 31 "//components/google/core/browser", | 32 "//components/google/core/browser", |
| 32 "//components/pref_registry", | 33 "//components/pref_registry", |
| 33 "//components/prefs", | 34 "//components/prefs", |
| 34 "//components/search_engines", | 35 "//components/search_engines", |
| 35 "//components/variations", | 36 "//components/variations", |
| 36 "//components/variations/service", | 37 "//components/variations/service", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 if (is_android) { | 40 if (is_android) { |
| 40 deps += [ "android:ntp_tiles_jni_headers" ] | 41 deps += [ "android:ntp_tiles_jni_headers" ] |
| (...skipping 13 matching lines...) Expand all Loading... |
| 54 } | 55 } |
| 55 | 56 |
| 56 if (is_android) { | 57 if (is_android) { |
| 57 java_cpp_enum("ntp_tiles_enums_java") { | 58 java_cpp_enum("ntp_tiles_enums_java") { |
| 58 sources = [ | 59 sources = [ |
| 59 "most_visited_sites.h", | 60 "most_visited_sites.h", |
| 60 "ntp_tile.h", | 61 "ntp_tile.h", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 } | 64 } |
| OLD | NEW |