| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
| 9 | 9 |
| 10 static_library("prefetch") { | 10 static_library("prefetch") { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 ":proto", | 39 ":proto", |
| 40 ] | 40 ] |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//components/gcm_driver", | 43 "//components/gcm_driver", |
| 44 "//components/gcm_driver/common", | 44 "//components/gcm_driver/common", |
| 45 "//components/keyed_service/core", | 45 "//components/keyed_service/core", |
| 46 "//components/ntp_snippets", | 46 "//components/ntp_snippets", |
| 47 "//components/offline_pages/core", | 47 "//components/offline_pages/core", |
| 48 "//components/offline_pages/core:switches", | 48 "//components/offline_pages/core:switches", |
| 49 "//components/version_info", |
| 50 "//google_apis", |
| 49 "//net:net", | 51 "//net:net", |
| 50 "//url", | 52 "//url", |
| 51 ] | 53 ] |
| 52 } | 54 } |
| 53 | 55 |
| 54 proto_library("proto") { | 56 proto_library("proto") { |
| 55 sources = [ | 57 sources = [ |
| 56 "proto/any.proto", | 58 "proto/any.proto", |
| 57 "proto/offline_pages.proto", | 59 "proto/offline_pages.proto", |
| 58 "proto/operation.proto", | 60 "proto/operation.proto", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 78 deps = [ | 80 deps = [ |
| 79 ":prefetch", | 81 ":prefetch", |
| 80 "//components/offline_pages/core", | 82 "//components/offline_pages/core", |
| 81 "//components/offline_pages/core:test_support", | 83 "//components/offline_pages/core:test_support", |
| 82 "//net:test_support", | 84 "//net:test_support", |
| 83 "//testing/gmock", | 85 "//testing/gmock", |
| 84 "//testing/gtest", | 86 "//testing/gtest", |
| 85 "//url", | 87 "//url", |
| 86 ] | 88 ] |
| 87 } | 89 } |
| OLD | NEW |