# Copyright 2016 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. if (is_android) { import("//build/config/android/rules.gni") } static_library("request_header") { sources = [ "offline_page_header.cc", "offline_page_header.h", ] deps = [ "//base", ] } source_set("unit_tests") { testonly = true sources = [ "offline_page_header_unittest.cc", ] deps = [ ":request_header", "//base", "//base/test:test_support", "//testing/gtest", ] }