summaryrefslogtreecommitdiff
path: root/chromium/extensions/browser/api/test/BUILD.gn
blob: 80d7cdef78b56cd92fcb5bcbe13a96e75d2db747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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("test") {
  sources = [
    "test_api.cc",
    "test_api.h",
    "test_api_observer.cc",
    "test_api_observer.h",
    "test_api_observer_registry.cc",
    "test_api_observer_registry.h",
  ]

  deps = [
    "//base",
    "//content/public/common",
    "//extensions/common",
    "//extensions/common/api",
  ]

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