| 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_search_metrics.cc", | 9 "google_search_metrics.cc", |
| 10 "google_search_metrics.h", | 10 "google_search_metrics.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "//ui/base", | 40 "//ui/base", |
| 41 "//url", | 41 "//url", |
| 42 ] | 42 ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 source_set("unit_tests") { | 45 source_set("unit_tests") { |
| 46 testonly = true | 46 testonly = true |
| 47 | 47 |
| 48 sources = [ | 48 sources = [ |
| 49 "google_url_tracker_unittest.cc", | 49 "google_url_tracker_unittest.cc", |
| 50 "google_util_unittest.cc" | 50 "google_util_unittest.cc", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 ":browser", | 54 ":browser", |
| 55 "//base", | 55 "//base", |
| 56 "//base:prefs", | 56 "//base:prefs", |
| 57 "//base:prefs_test_support", | 57 "//base:prefs_test_support", |
| 58 "//components/infobars/core", | 58 "//components/infobars/core", |
| 59 "//components/infobars/test:test_support", | 59 "//components/infobars/test:test_support", |
| 60 "//net:test_support", | 60 "//net:test_support", |
| 61 "//testing/gtest", | 61 "//testing/gtest", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| OLD | NEW |