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 source_set("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", |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 "//components/variations", | 255 "//components/variations", |
256 "//net:test_support", | 256 "//net:test_support", |
257 "//sql", | 257 "//sql", |
258 "//sql:test_support", | 258 "//sql:test_support", |
259 "//testing/gmock", | 259 "//testing/gmock", |
260 "//testing/gtest", | 260 "//testing/gtest", |
261 "//ui/base", | 261 "//ui/base", |
262 "//url", | 262 "//url", |
263 ] | 263 ] |
264 } | 264 } |
OLD | NEW |