| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//components/keyed_service/core", | 105 "//components/keyed_service/core", |
| 106 "//components/omnibox/common", | 106 "//components/omnibox/common", |
| 107 "//components/pref_registry", | 107 "//components/pref_registry", |
| 108 "//components/query_parser", | 108 "//components/query_parser", |
| 109 "//components/resources", | 109 "//components/resources", |
| 110 "//components/search", | 110 "//components/search", |
| 111 "//components/search_engines", | 111 "//components/search_engines", |
| 112 "//components/sessions", | 112 "//components/sessions", |
| 113 "//components/strings", | 113 "//components/strings", |
| 114 "//components/toolbar", | 114 "//components/toolbar", |
| 115 "//components/url_fixer", | 115 "//components/url_formatter", |
| 116 "//components/variations", | 116 "//components/variations", |
| 117 "//components/variations/net", | 117 "//components/variations/net", |
| 118 "//net", | 118 "//net", |
| 119 "//skia", | 119 "//skia", |
| 120 "//sql", | 120 "//sql", |
| 121 "//third_party/protobuf:protobuf_lite", | 121 "//third_party/protobuf:protobuf_lite", |
| 122 "//ui/base", | 122 "//ui/base", |
| 123 "//ui/gfx", | 123 "//ui/gfx", |
| 124 "//url", | 124 "//url", |
| 125 ] | 125 ] |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 ":test_support", | 170 ":test_support", |
| 171 "//base", | 171 "//base", |
| 172 "//components/search", | 172 "//components/search", |
| 173 "//components/search_engines", | 173 "//components/search_engines", |
| 174 "//components/variations", | 174 "//components/variations", |
| 175 "//testing/gmock", | 175 "//testing/gmock", |
| 176 "//testing/gtest", | 176 "//testing/gtest", |
| 177 "//url", | 177 "//url", |
| 178 ] | 178 ] |
| 179 } | 179 } |
| OLD | NEW |