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