| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//components/bookmarks/browser", | 91 "//components/bookmarks/browser", |
| 92 "//components/keyed_service/core", | 92 "//components/keyed_service/core", |
| 93 "//components/omnibox/common", | 93 "//components/omnibox/common", |
| 94 "//components/pref_registry", | 94 "//components/pref_registry", |
| 95 "//components/query_parser", | 95 "//components/query_parser", |
| 96 "//components/resources", | 96 "//components/resources", |
| 97 "//components/search", | 97 "//components/search", |
| 98 "//components/search_engines", | 98 "//components/search_engines", |
| 99 "//components/sessions", | 99 "//components/sessions", |
| 100 "//components/strings", | 100 "//components/strings", |
| 101 "//components/url_formatter", | 101 "//components/url_fixer", |
| 102 "//components/variations", | 102 "//components/variations", |
| 103 "//components/variations/net", | 103 "//components/variations/net", |
| 104 "//net", | 104 "//net", |
| 105 "//sql", | 105 "//sql", |
| 106 "//third_party/protobuf:protobuf_lite", | 106 "//third_party/protobuf:protobuf_lite", |
| 107 "//ui/base", | 107 "//ui/base", |
| 108 "//url", | 108 "//url", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ":test_support", | 154 ":test_support", |
| 155 "//base", | 155 "//base", |
| 156 "//components/search", | 156 "//components/search", |
| 157 "//components/search_engines", | 157 "//components/search_engines", |
| 158 "//components/variations", | 158 "//components/variations", |
| 159 "//testing/gmock", | 159 "//testing/gmock", |
| 160 "//testing/gtest", | 160 "//testing/gtest", |
| 161 "//url", | 161 "//url", |
| 162 ] | 162 ] |
| 163 } | 163 } |
| OLD | NEW |