| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//components/offline_pages/core", | 78 "//components/offline_pages/core", |
| 79 ] | 79 ] |
| 80 } | 80 } |
| 81 | 81 |
| 82 proto_library("proto") { | 82 proto_library("proto") { |
| 83 sources = [ | 83 sources = [ |
| 84 "proto/any.proto", | 84 "proto/any.proto", |
| 85 "proto/offline_pages.proto", | 85 "proto/offline_pages.proto", |
| 86 "proto/operation.proto", | 86 "proto/operation.proto", |
| 87 "proto/status.proto", | 87 "proto/status.proto", |
| 88 "proto/timestamp.proto", | |
| 89 ] | 88 ] |
| 90 } | 89 } |
| 91 | 90 |
| 92 source_set("unit_tests") { | 91 source_set("unit_tests") { |
| 93 testonly = true | 92 testonly = true |
| 94 sources = [ | 93 sources = [ |
| 95 "generate_page_bundle_request_unittest.cc", | 94 "generate_page_bundle_request_unittest.cc", |
| 96 "get_operation_request_unittest.cc", | 95 "get_operation_request_unittest.cc", |
| 97 "prefetch_dispatcher_impl_unittest.cc", | 96 "prefetch_dispatcher_impl_unittest.cc", |
| 98 "prefetch_gcm_app_handler_unittest.cc", | 97 "prefetch_gcm_app_handler_unittest.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 110 "//components/gcm_driver/instance_id", | 109 "//components/gcm_driver/instance_id", |
| 111 "//components/offline_pages/core", | 110 "//components/offline_pages/core", |
| 112 "//components/offline_pages/core:switches", | 111 "//components/offline_pages/core:switches", |
| 113 "//components/offline_pages/core:test_support", | 112 "//components/offline_pages/core:test_support", |
| 114 "//net:test_support", | 113 "//net:test_support", |
| 115 "//testing/gmock", | 114 "//testing/gmock", |
| 116 "//testing/gtest", | 115 "//testing/gtest", |
| 117 "//url", | 116 "//url", |
| 118 ] | 117 ] |
| 119 } | 118 } |
| OLD | NEW |