910e62b5创建于 1月15日历史提交
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//extensions/buildflags/buildflags.gni")

assert(enable_extensions,
       "Cannot depend on extensions because enable_extensions=false.")

source_set("app_runtime") {
  sources = [
    "app_runtime_api.cc",
    "app_runtime_api.h",
  ]

  configs += [ "//build/config/compiler:wexit_time_destructors" ]

  public_deps = [
    "//base",
    "//extensions/common",
  ]

  deps = [
    "//extensions/browser:browser_sources",
    "//extensions/common/api",
    "//url",
  ]

  allow_circular_includes_from = [ "//extensions/browser:browser_sources" ]
}