| 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| 11 static_library("browser") { | 11 static_library("browser") { |
| 12 sources = [ | 12 sources = [ |
| 13 "answers_cache.cc", | 13 "answers_cache.cc", |
| 14 "answers_cache.h", | 14 "answers_cache.h", |
| 15 "autocomplete_classifier.cc", | 15 "autocomplete_classifier.cc", |
| 16 "autocomplete_classifier.h", | 16 "autocomplete_classifier.h", |
| 17 "autocomplete_controller.cc", | 17 "autocomplete_controller.cc", |
| 18 "autocomplete_controller.h", | 18 "autocomplete_controller.h", |
| 19 "autocomplete_controller_delegate.h", | 19 "autocomplete_controller_delegate.h", |
| 20 "autocomplete_input.cc", | 20 "autocomplete_input.cc", |
| 21 "autocomplete_input.h", | 21 "autocomplete_input.h", |
| 22 "autocomplete_match.cc", | 22 "autocomplete_match.cc", |
| 23 "autocomplete_match.h", | 23 "autocomplete_match.h", |
| 24 "autocomplete_match_type.cc", | 24 "autocomplete_match_type.cc", |
| 25 "autocomplete_match_type.h", | 25 "autocomplete_match_type.h", |
| 26 "autocomplete_provider.cc", | 26 "autocomplete_provider.cc", |
| 27 "autocomplete_provider.h", | 27 "autocomplete_provider.h", |
| 28 "autocomplete_provider_utils.cc", |
| 29 "autocomplete_provider_utils.h", |
| 28 "autocomplete_result.cc", | 30 "autocomplete_result.cc", |
| 29 "autocomplete_result.h", | 31 "autocomplete_result.h", |
| 30 "autocomplete_scheme_classifier.h", | 32 "autocomplete_scheme_classifier.h", |
| 31 "base_search_provider.cc", | 33 "base_search_provider.cc", |
| 32 "base_search_provider.h", | 34 "base_search_provider.h", |
| 33 "bookmark_provider.cc", | 35 "bookmark_provider.cc", |
| 34 "bookmark_provider.h", | 36 "bookmark_provider.h", |
| 35 "builtin_provider.cc", | 37 "builtin_provider.cc", |
| 36 "builtin_provider.h", | 38 "builtin_provider.h", |
| 37 "clipboard_url_provider.cc", | 39 "clipboard_url_provider.cc", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "//components/variations", | 270 "//components/variations", |
| 269 "//net:test_support", | 271 "//net:test_support", |
| 270 "//sql", | 272 "//sql", |
| 271 "//sql:test_support", | 273 "//sql:test_support", |
| 272 "//testing/gmock", | 274 "//testing/gmock", |
| 273 "//testing/gtest", | 275 "//testing/gtest", |
| 274 "//ui/base:base", | 276 "//ui/base:base", |
| 275 "//url", | 277 "//url", |
| 276 ] | 278 ] |
| 277 } | 279 } |
| OLD | NEW |