| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | |
| 60 "//net:test_support", | 59 "//net:test_support", |
| 61 "//testing/gtest", | 60 "//testing/gtest", |
| 62 ] | 61 ] |
| 63 } | 62 } |
| OLD | NEW |