| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "address.cc", | 9 "address.cc", |
| 10 "address.h", | 10 "address.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "autofill_save_card_infobar_mobile.h", | 182 "autofill_save_card_infobar_mobile.h", |
| 183 ] | 183 ] |
| 184 } | 184 } |
| 185 | 185 |
| 186 configs += [ "//build/config:precompiled_headers" ] | 186 configs += [ "//build/config:precompiled_headers" ] |
| 187 | 187 |
| 188 public_deps = [ | 188 public_deps = [ |
| 189 "//components/autofill/core/browser/proto", | 189 "//components/autofill/core/browser/proto", |
| 190 "//components/autofill/core/common", | 190 "//components/autofill/core/common", |
| 191 "//components/resources", | 191 "//components/resources", |
| 192 "//skia", |
| 192 ] | 193 ] |
| 193 deps = [ | 194 deps = [ |
| 194 "//base", | 195 "//base", |
| 195 "//base:i18n", | 196 "//base:i18n", |
| 196 "//components/data_use_measurement/core", | 197 "//components/data_use_measurement/core", |
| 197 "//components/infobars/core", | 198 "//components/infobars/core", |
| 198 "//components/keyed_service/core", | 199 "//components/keyed_service/core", |
| 199 "//components/os_crypt", | 200 "//components/os_crypt", |
| 200 "//components/pref_registry", | 201 "//components/pref_registry", |
| 201 "//components/prefs", | 202 "//components/prefs", |
| 202 "//components/rappor", | 203 "//components/rappor", |
| 203 "//components/security_state/core", | 204 "//components/security_state/core", |
| 204 "//components/signin/core/browser", | 205 "//components/signin/core/browser", |
| 205 "//components/signin/core/common", | 206 "//components/signin/core/common", |
| 206 "//components/strings", | 207 "//components/strings", |
| 207 "//components/sync", | 208 "//components/sync", |
| 208 "//components/ukm", | 209 "//components/ukm", |
| 209 "//components/variations/net", | 210 "//components/variations/net", |
| 210 "//components/version_info", | 211 "//components/version_info", |
| 211 "//components/webdata/common", | 212 "//components/webdata/common", |
| 212 "//google_apis", | 213 "//google_apis", |
| 213 "//net", | 214 "//net", |
| 214 "//skia", | |
| 215 "//sql", | 215 "//sql", |
| 216 "//third_party/fips181", | 216 "//third_party/fips181", |
| 217 "//third_party/icu", | 217 "//third_party/icu", |
| 218 "//third_party/libaddressinput", | 218 "//third_party/libaddressinput", |
| 219 "//third_party/libphonenumber", | 219 "//third_party/libphonenumber", |
| 220 "//third_party/re2", | 220 "//third_party/re2", |
| 221 "//ui/base", | 221 "//ui/base", |
| 222 "//ui/gfx", | 222 "//ui/gfx", |
| 223 "//ui/gfx/geometry", | 223 "//ui/gfx/geometry", |
| 224 "//ui/gfx/range", | 224 "//ui/gfx/range", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 "//net:test_support", | 389 "//net:test_support", |
| 390 "//sql", | 390 "//sql", |
| 391 "//testing/gmock", | 391 "//testing/gmock", |
| 392 "//testing/gtest", | 392 "//testing/gtest", |
| 393 "//third_party/libaddressinput:util", | 393 "//third_party/libaddressinput:util", |
| 394 "//third_party/libphonenumber", | 394 "//third_party/libphonenumber", |
| 395 "//ui/base", | 395 "//ui/base", |
| 396 "//url", | 396 "//url", |
| 397 ] | 397 ] |
| 398 } | 398 } |
| OLD | NEW |