BUILD.gn 426 B

12345678910111213141516171819
  1. # Copyright 2021 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. static_library("back_forward_cache") {
  5. sources = [
  6. "back_forward_cache_disable.cc",
  7. "back_forward_cache_disable.h",
  8. ]
  9. public_deps = [
  10. ":enum",
  11. "//content/public/browser",
  12. ]
  13. }
  14. source_set("enum") {
  15. sources = [ "disabled_reason_id.h" ]
  16. }