| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 precache_config_settings_url = | 7 precache_config_settings_url = |
| 8 "http://www.gstatic.com/chrome/wifiprefetch/precache_config" | 8 "http://www.gstatic.com/chrome/wifiprefetch/precache_config" |
| 9 precache_manifest_url_prefix = | 9 precache_manifest_url_prefix = |
| 10 "http://www.gstatic.com/chrome/wifiprefetch/precache_manifest_" | 10 "http://www.gstatic.com/chrome/wifiprefetch/precache_manifest_" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 configs += [ ":precache_config" ] | 35 configs += [ ":precache_config" ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 ":proto", | 38 ":proto", |
| 39 "//base", | 39 "//base", |
| 40 "//url", | 40 "//url", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 proto_library("proto") { | 44 proto_library("proto") { |
| 45 sources = [ "proto/precache.proto" ] | 45 sources = [ |
| 46 "proto/precache.proto", |
| 47 ] |
| 46 } | 48 } |
| OLD | NEW |