| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "google_pref_names.cc", | 7 "google_pref_names.cc", |
| 8 "google_pref_names.h", | 8 "google_pref_names.h", |
| 9 "google_switches.cc", | 9 "google_switches.cc", |
| 10 "google_switches.h", | 10 "google_switches.h", |
| 11 "google_url_tracker.cc", | 11 "google_url_tracker.cc", |
| 12 "google_url_tracker.h", | 12 "google_url_tracker.h", |
| 13 "google_url_tracker_client.cc", | 13 "google_url_tracker_client.cc", |
| 14 "google_url_tracker_client.h", | 14 "google_url_tracker_client.h", |
| 15 "google_util.cc", | 15 "google_util.cc", |
| 16 "google_util.h", | 16 "google_util.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//base:prefs", | |
| 22 "//components/data_use_measurement/core", | 21 "//components/data_use_measurement/core", |
| 23 "//components/keyed_service/core", | 22 "//components/keyed_service/core", |
| 24 "//components/pref_registry", | 23 "//components/pref_registry", |
| 24 "//components/prefs", |
| 25 "//components/strings", | 25 "//components/strings", |
| 26 "//components/url_formatter", | 26 "//components/url_formatter", |
| 27 "//net", | 27 "//net", |
| 28 "//url", | 28 "//url", |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 source_set("unit_tests") { | 32 source_set("unit_tests") { |
| 33 testonly = true | 33 testonly = true |
| 34 | 34 |
| 35 sources = [ | 35 sources = [ |
| 36 "google_url_tracker_unittest.cc", | 36 "google_url_tracker_unittest.cc", |
| 37 "google_util_unittest.cc", | 37 "google_util_unittest.cc", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 ":browser", | 41 ":browser", |
| 42 "//base", | 42 "//base", |
| 43 "//base:prefs", | 43 "//components/prefs:test_support", |
| 44 "//base:prefs_test_support", | |
| 45 "//net:test_support", | 44 "//net:test_support", |
| 46 "//testing/gtest", | 45 "//testing/gtest", |
| 47 ] | 46 ] |
| 48 } | 47 } |
| OLD | NEW |