Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / components / content_settings / core / common / BUILD.gn
blob6e39d74a573b3f6e64f8fb54037b7700a583c117
1 # Copyright 2014 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 static_library("common") {
6   sources = [
7     "content_settings.cc",
8     "content_settings.h",
9     "content_settings_pattern.cc",
10     "content_settings_pattern.h",
11     "content_settings_pattern_parser.cc",
12     "content_settings_pattern_parser.h",
13     "content_settings_types.h",
14     "permission_request_id.h",
15     "permission_request_id.cc",
16     "pref_names.h",
17     "pref_names.cc",
18   ]
20   deps = [
21     "//base",
22     "//net",
23     "//url",
24   ]
27 source_set("unit_tests") {
28   testonly = true
29   sources = [
30     "content_settings_pattern_unittest.cc",
31     "content_settings_pattern_parser_unittest.cc",
32   ]
34   deps = [
35     ":common",
36     "//testing/gmock",
37     "//testing/gtest",
38   ]