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/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
11 source_set("browser") { | 11 static_library("browser") { |
12 sources = [ | 12 sources = [ |
13 "affiliated_match_helper.cc", | 13 "affiliated_match_helper.cc", |
14 "affiliated_match_helper.h", | 14 "affiliated_match_helper.h", |
15 "affiliation_backend.cc", | 15 "affiliation_backend.cc", |
16 "affiliation_backend.h", | 16 "affiliation_backend.h", |
17 "affiliation_database.cc", | 17 "affiliation_database.cc", |
18 "affiliation_database.h", | 18 "affiliation_database.h", |
19 "affiliation_fetch_throttler.cc", | 19 "affiliation_fetch_throttler.cc", |
20 "affiliation_fetch_throttler.h", | 20 "affiliation_fetch_throttler.h", |
21 "affiliation_fetch_throttler_delegate.h", | 21 "affiliation_fetch_throttler_delegate.h", |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 "//components/variations", | 294 "//components/variations", |
295 "//net:test_support", | 295 "//net:test_support", |
296 "//sql:test_support", | 296 "//sql:test_support", |
297 "//sync:test_support_sync_api", | 297 "//sync:test_support_sync_api", |
298 "//testing/gmock", | 298 "//testing/gmock", |
299 "//testing/gtest", | 299 "//testing/gtest", |
300 "//ui/base", | 300 "//ui/base", |
301 "//url", | 301 "//url", |
302 ] | 302 ] |
303 } | 303 } |
OLD | NEW |