| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "hsts_query.h", | 182 "hsts_query.h", |
| 183 "http_data_cleaner.cc", | 183 "http_data_cleaner.cc", |
| 184 "http_data_cleaner.h", | 184 "http_data_cleaner.h", |
| 185 ] | 185 ] |
| 186 } | 186 } |
| 187 | 187 |
| 188 if (is_mac || is_ios) { | 188 if (is_mac || is_ios) { |
| 189 sources -= [ "login_database_posix.cc" ] | 189 sources -= [ "login_database_posix.cc" ] |
| 190 } | 190 } |
| 191 | 191 |
| 192 if (!is_ios) { | |
| 193 deps += [ "//components/safe_browsing/password_protection" ] | |
| 194 } | |
| 195 | |
| 196 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 197 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 193 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 198 } | 194 } |
| 199 | 195 |
| 200 proto_library("proto") { | 196 proto_library("proto") { |
| 201 sources = [ | 197 sources = [ |
| 202 "affiliation_api.proto", | 198 "affiliation_api.proto", |
| 203 ] | 199 ] |
| 204 } | 200 } |
| 205 | 201 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 "//components/sync:test_support_model", | 354 "//components/sync:test_support_model", |
| 359 "//components/variations", | 355 "//components/variations", |
| 360 "//net:test_support", | 356 "//net:test_support", |
| 361 "//sql:test_support", | 357 "//sql:test_support", |
| 362 "//testing/gmock", | 358 "//testing/gmock", |
| 363 "//testing/gtest", | 359 "//testing/gtest", |
| 364 "//ui/base", | 360 "//ui/base", |
| 365 "//url", | 361 "//url", |
| 366 ] | 362 ] |
| 367 } | 363 } |
| OLD | NEW |