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 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 158 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
159 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 159 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
160 } | 160 } |
161 | 161 |
162 proto_library("proto") { | 162 proto_library("proto") { |
163 sources = [ | 163 sources = [ |
164 "affiliation_api.proto", | 164 "affiliation_api.proto", |
165 ] | 165 ] |
166 } | 166 } |
167 | 167 |
168 source_set("test_support") { | 168 static_library("test_support") { |
169 testonly = true | 169 testonly = true |
170 sources = [ | 170 sources = [ |
171 "fake_affiliation_api.cc", | 171 "fake_affiliation_api.cc", |
172 "fake_affiliation_api.h", | 172 "fake_affiliation_api.h", |
173 "fake_affiliation_fetcher.cc", | 173 "fake_affiliation_fetcher.cc", |
174 "fake_affiliation_fetcher.h", | 174 "fake_affiliation_fetcher.h", |
175 "mock_affiliated_match_helper.cc", | 175 "mock_affiliated_match_helper.cc", |
176 "mock_affiliated_match_helper.h", | 176 "mock_affiliated_match_helper.h", |
177 "mock_affiliation_consumer.cc", | 177 "mock_affiliation_consumer.cc", |
178 "mock_affiliation_consumer.h", | 178 "mock_affiliation_consumer.h", |
(...skipping 115 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 |