summaryrefslogtreecommitdiffstats
path: root/headless/BUILD.gn
blob: f94e93d356014c2be137619d56271b8ba8540d8b (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
# Copyright 2015 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.

group("headless") {
  deps = [
    "//headless:headless_lib",
  ]
}

static_library("headless_lib") {
  sources = [
    "public/headless_browser.cc",
    "public/headless_browser.h",
    "public/headless_export.h",
    "public/network.h",
    "public/web_contents.h",
    "public/web_frame.h",
  ]

  deps = [
    "//base",
  ]
}