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", | |
10 "google_search_metrics.h", | |
11 "google_switches.cc", | 9 "google_switches.cc", |
12 "google_switches.h", | 10 "google_switches.h", |
13 "google_url_tracker.cc", | 11 "google_url_tracker.cc", |
14 "google_url_tracker.h", | 12 "google_url_tracker.h", |
15 "google_url_tracker_client.cc", | 13 "google_url_tracker_client.cc", |
16 "google_url_tracker_client.h", | 14 "google_url_tracker_client.h", |
17 "google_util.cc", | 15 "google_util.cc", |
18 "google_util.h", | 16 "google_util.h", |
19 ] | 17 ] |
20 | 18 |
(...skipping 19 matching lines...) Expand all Loading... |
40 | 38 |
41 deps = [ | 39 deps = [ |
42 ":browser", | 40 ":browser", |
43 "//base", | 41 "//base", |
44 "//base:prefs", | 42 "//base:prefs", |
45 "//base:prefs_test_support", | 43 "//base:prefs_test_support", |
46 "//net:test_support", | 44 "//net:test_support", |
47 "//testing/gtest", | 45 "//testing/gtest", |
48 ] | 46 ] |
49 } | 47 } |
OLD | NEW |