| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//components/ntp_snippets/remote/proto", | 107 "//components/ntp_snippets/remote/proto", |
| 108 "//components/offline_pages/core", | 108 "//components/offline_pages/core", |
| 109 "//components/offline_pages/core/downloads:offline_pages_ui_adapter", | 109 "//components/offline_pages/core/downloads:offline_pages_ui_adapter", |
| 110 "//components/offline_pages/core/recent_tabs", | 110 "//components/offline_pages/core/recent_tabs", |
| 111 "//components/physical_web/data_source", | 111 "//components/physical_web/data_source", |
| 112 "//components/reading_list/core", | 112 "//components/reading_list/core", |
| 113 "//components/sessions", | 113 "//components/sessions", |
| 114 "//components/strings", | 114 "//components/strings", |
| 115 "//components/sync_sessions", | 115 "//components/sync_sessions", |
| 116 "//components/translate/core/browser", | 116 "//components/translate/core/browser", |
| 117 "//components/url_formatter", |
| 117 "//components/variations", | 118 "//components/variations", |
| 118 "//components/variations/net", | 119 "//components/variations/net", |
| 119 "//third_party/icu/", | 120 "//third_party/icu/", |
| 120 "//ui/gfx", | 121 "//ui/gfx", |
| 121 ] | 122 ] |
| 122 } | 123 } |
| 123 | 124 |
| 124 if (is_android) { | 125 if (is_android) { |
| 125 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 126 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 126 sources = [ | 127 sources = [ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 211 |
| 211 deps = [ | 212 deps = [ |
| 212 ":ntp_snippets", | 213 ":ntp_snippets", |
| 213 "//base", | 214 "//base", |
| 214 "//components/offline_pages/core", | 215 "//components/offline_pages/core", |
| 215 "//components/offline_pages/core:test_support", | 216 "//components/offline_pages/core:test_support", |
| 216 "//testing/gmock", | 217 "//testing/gmock", |
| 217 "//testing/gtest", | 218 "//testing/gtest", |
| 218 ] | 219 ] |
| 219 } | 220 } |
| OLD | NEW |