Roll ANGLE cc54ab3..c5b2ba5
[chromium-blink-merge.git] / components / devtools_http_handler / BUILD.gn
blobd442152979c4f3b9b97819cc5d308355f54bc876
1 # Copyright 2015 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.
5 source_set("devtools_http_handler") {
6   sources = [
7     "devtools_http_handler.cc",
8     "devtools_http_handler.h",
9     "devtools_http_handler_delegate.h",
10   ]
12   deps = [
13     "//base",
14     "//components/devtools_discovery",
15     "//content/public/browser",
16     "//net",
17     "//net:http_server",
18   ]
21 source_set("unit_tests") {
22   testonly = true
23   sources = [
24     "devtools_http_handler_unittest.cc",
25   ]
27   deps = [
28     ":devtools_http_handler",
29     "//content/test:test_support",
30     "//testing/gtest",
31   ]