| 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("offline_pages_ui_adapter") { | 9 static_library("offline_pages_ui_adapter") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "download_ui_adapter_unittest.cc", | 32 "download_ui_adapter_unittest.cc", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 ":offline_pages_ui_adapter", | 36 ":offline_pages_ui_adapter", |
| 37 "//base", | 37 "//base", |
| 38 "//base/test:test_support", | 38 "//base/test:test_support", |
| 39 "//components/offline_pages/core", | 39 "//components/offline_pages/core", |
| 40 "//components/offline_pages/core:test_support", | 40 "//components/offline_pages/core:test_support", |
| 41 "//components/offline_pages/core/background:background_offliner", | 41 "//components/offline_pages/core/background:background_offliner", |
| 42 "//components/offline_pages/core/background:test_support", |
| 42 "//testing/gtest", | 43 "//testing/gtest", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| OLD | NEW |