| 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "answers_cache.cc", | 9 "answers_cache.cc", |
| 10 "answers_cache.h", | 10 "answers_cache.h", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//base:prefs", | 87 "//base:prefs", |
| 88 "//components/bookmarks/browser", | 88 "//components/bookmarks/browser", |
| 89 "//components/keyed_service/core", | 89 "//components/keyed_service/core", |
| 90 "//components/pref_registry", | 90 "//components/pref_registry", |
| 91 "//components/query_parser", | 91 "//components/query_parser", |
| 92 "//components/resources", | 92 "//components/resources", |
| 93 "//components/search", | 93 "//components/search", |
| 94 "//components/search_engines", | 94 "//components/search_engines", |
| 95 "//components/sessions", | 95 "//components/sessions", |
| 96 "//components/strings", | 96 "//components/strings", |
| 97 "//components/url_fixer", | 97 "//components/url_formatter", |
| 98 "//components/variations", | 98 "//components/variations", |
| 99 "//components/variations/net", | 99 "//components/variations/net", |
| 100 "//net", | 100 "//net", |
| 101 "//sql", | 101 "//sql", |
| 102 "//third_party/protobuf:protobuf_lite", | 102 "//third_party/protobuf:protobuf_lite", |
| 103 "//ui/base", | 103 "//ui/base", |
| 104 "//url", | 104 "//url", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 ":test_support", | 150 ":test_support", |
| 151 "//base", | 151 "//base", |
| 152 "//components/search", | 152 "//components/search", |
| 153 "//components/search_engines", | 153 "//components/search_engines", |
| 154 "//components/variations", | 154 "//components/variations", |
| 155 "//testing/gmock", | 155 "//testing/gmock", |
| 156 "//testing/gtest", | 156 "//testing/gtest", |
| 157 "//url", | 157 "//url", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| OLD | NEW |