Roll src/third_party/WebKit eac3800:0237a66 (svn 202606:202607)
[chromium-blink-merge.git] / components / google / core / browser / BUILD.gn
blobd98d61bf3b90cdea8947ef6b271614dafb198265
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("browser") {
6   sources = [
7     "google_pref_names.cc",
8     "google_pref_names.h",
9     "google_switches.cc",
10     "google_switches.h",
11     "google_url_tracker.cc",
12     "google_url_tracker.h",
13     "google_url_tracker_client.cc",
14     "google_url_tracker_client.h",
15     "google_util.cc",
16     "google_util.h",
17   ]
19   deps = [
20     "//base",
21     "//base:prefs",
22     "//components/data_use_measurement/core",
23     "//components/keyed_service/core",
24     "//components/pref_registry",
25     "//components/strings",
26     "//components/url_formatter",
27     "//net",
28     "//url",
29   ]
32 source_set("unit_tests") {
33   testonly = true
35   sources = [
36     "google_url_tracker_unittest.cc",
37     "google_util_unittest.cc",
38   ]
40   deps = [
41     ":browser",
42     "//base",
43     "//base:prefs",
44     "//base:prefs_test_support",
45     "//net:test_support",
46     "//testing/gtest",
47   ]