| 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 # These values are duplicated in the GYP build in: | 7 # These values are duplicated in the GYP build in: |
| 8 # //components/precache/precache_defines.gypi | 8 # //components/precache/precache_defines.gypi |
| 9 precache_config_settings_url = | 9 precache_config_settings_url = |
| 10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config" | 10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config" |
| 11 precache_manifest_url_prefix = | 11 precache_manifest_url_prefix = |
| 12 "https://www.gstatic.com/chrome/wifiprefetch/hosts/" | 12 "https://www.gstatic.com/chrome/wifiprefetch/hosts/" |
| 13 | 13 |
| 14 config("precache_config") { | 14 config("precache_config") { |
| 15 defines = [ | 15 defines = [ |
| 16 "PRECACHE_CONFIG_SETTINGS_URL=\"$precache_config_settings_url\"", | 16 "PRECACHE_CONFIG_SETTINGS_URL=\"$precache_config_settings_url\"", |
| 17 "PRECACHE_MANIFEST_URL_PREFIX=\"$precache_manifest_url_prefix\"", | 17 "PRECACHE_MANIFEST_URL_PREFIX=\"$precache_manifest_url_prefix\"", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 source_set("core") { | 21 source_set("core") { |
| 22 sources = [ | 22 sources = [ |
| 23 "fetcher_pool.h", | 23 "fetcher_pool.h", |
| 24 "precache_database.cc", | 24 "precache_database.cc", |
| 25 "precache_database.h", | 25 "precache_database.h", |
| 26 "precache_fetcher.cc", | 26 "precache_fetcher.cc", |
| 27 "precache_fetcher.h", | 27 "precache_fetcher.h", |
| 28 "precache_session_table.cc", |
| 29 "precache_session_table.h", |
| 28 "precache_switches.cc", | 30 "precache_switches.cc", |
| 29 "precache_switches.h", | 31 "precache_switches.h", |
| 30 "precache_url_table.cc", | 32 "precache_url_table.cc", |
| 31 "precache_url_table.h", | 33 "precache_url_table.h", |
| 32 ] | 34 ] |
| 33 | 35 |
| 34 # Note the GYP build sets this as direct dependent settings, but this is | 36 # Note the GYP build sets this as direct dependent settings, but this is |
| 35 # only used to share the settings with the unit tests. Instead, we just | 37 # only used to share the settings with the unit tests. Instead, we just |
| 36 # set this config for the necessary targets manually. | 38 # set this config for the necessary targets manually. |
| 37 configs += [ ":precache_config" ] | 39 configs += [ ":precache_config" ] |
| 38 | 40 |
| 39 deps = [ | 41 deps = [ |
| 40 ":proto", | 42 ":proto", |
| 41 "//base", | 43 "//base", |
| 42 "//components/history/core/browser", | 44 "//components/history/core/browser", |
| 43 "//components/prefs", | 45 "//components/prefs", |
| 44 "//net", | 46 "//net", |
| 45 "//sql", | 47 "//sql", |
| 46 "//url", | 48 "//url", |
| 47 ] | 49 ] |
| 48 } | 50 } |
| 49 | 51 |
| 50 proto_library("proto") { | 52 proto_library("proto") { |
| 51 sources = [ | 53 sources = [ |
| 52 "proto/precache.proto", | 54 "proto/precache.proto", |
| 55 "proto/unfinished_work.proto", |
| 53 ] | 56 ] |
| 54 } | 57 } |
| 55 | 58 |
| 56 source_set("unit_tests") { | 59 source_set("unit_tests") { |
| 57 testonly = true | 60 testonly = true |
| 58 sources = [ | 61 sources = [ |
| 59 "fetcher_pool_unittest.cc", | 62 "fetcher_pool_unittest.cc", |
| 60 "precache_database_unittest.cc", | 63 "precache_database_unittest.cc", |
| 61 "precache_fetcher_unittest.cc", | 64 "precache_fetcher_unittest.cc", |
| 65 "precache_session_table_unittest.cc", |
| 62 "precache_url_table_unittest.cc", | 66 "precache_url_table_unittest.cc", |
| 63 ] | 67 ] |
| 64 | 68 |
| 65 configs += [ ":precache_config" ] | 69 configs += [ ":precache_config" ] |
| 66 | 70 |
| 67 deps = [ | 71 deps = [ |
| 68 ":core", | 72 ":core", |
| 69 ":proto", | 73 ":proto", |
| 70 "//base", | 74 "//base", |
| 71 "//base/test:test_support", | 75 "//base/test:test_support", |
| 72 "//components/history/core/browser", | 76 "//components/history/core/browser", |
| 73 "//net:test_support", | 77 "//net:test_support", |
| 74 "//sql", | 78 "//sql", |
| 75 "//testing/gmock", | 79 "//testing/gmock", |
| 76 "//testing/gtest", | 80 "//testing/gtest", |
| 77 ] | 81 ] |
| 78 } | 82 } |
| OLD | NEW |