| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//third_party/re2", | 164 "//third_party/re2", |
| 165 "//ui/base", | 165 "//ui/base", |
| 166 "//ui/gfx", | 166 "//ui/gfx", |
| 167 "//url", | 167 "//url", |
| 168 ] | 168 ] |
| 169 | 169 |
| 170 if (is_mac || is_ios) { | 170 if (is_mac || is_ios) { |
| 171 sources -= [ "login_database_posix.cc" ] | 171 sources -= [ "login_database_posix.cc" ] |
| 172 } | 172 } |
| 173 | 173 |
| 174 if (!is_ios) { | |
| 175 deps += [ "//components/safe_browsing/password_protection" ] | |
| 176 } | |
| 177 | |
| 178 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 179 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 175 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 180 } | 176 } |
| 181 | 177 |
| 182 proto_library("proto") { | 178 proto_library("proto") { |
| 183 sources = [ | 179 sources = [ |
| 184 "affiliation_api.proto", | 180 "affiliation_api.proto", |
| 185 ] | 181 ] |
| 186 } | 182 } |
| 187 | 183 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "//components/sync:test_support_model", | 322 "//components/sync:test_support_model", |
| 327 "//components/variations", | 323 "//components/variations", |
| 328 "//net:test_support", | 324 "//net:test_support", |
| 329 "//sql:test_support", | 325 "//sql:test_support", |
| 330 "//testing/gmock", | 326 "//testing/gmock", |
| 331 "//testing/gtest", | 327 "//testing/gtest", |
| 332 "//ui/base", | 328 "//ui/base", |
| 333 "//url", | 329 "//url", |
| 334 ] | 330 ] |
| 335 } | 331 } |
| OLD | NEW |