Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1348)

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 1114123003: Fix various missing dependencies in //components for the Mac GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@content_shell_lib
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/BUILD.gn ('k') | components/wifi/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # GYP version: components/autofill.gyp:autofill_core_browser 5 # GYP version: components/autofill.gyp:autofill_core_browser
6 static_library("browser") { 6 static_library("browser") {
7 sources = [ 7 sources = [
8 "address.cc", 8 "address.cc",
9 "address.h", 9 "address.h",
10 "address_field.cc", 10 "address_field.cc",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "//third_party/libaddressinput:util", 145 "//third_party/libaddressinput:util",
146 "//third_party/libphonenumber", 146 "//third_party/libphonenumber",
147 "//third_party/libjingle", 147 "//third_party/libjingle",
148 "//ui/base", 148 "//ui/base",
149 "//ui/gfx", 149 "//ui/gfx",
150 "//ui/gfx/geometry", 150 "//ui/gfx/geometry",
151 "//url", 151 "//url",
152 ] 152 ]
153 153
154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
155
156 if (is_mac) {
157 libs = [ "AddressBook.framework" ]
158 }
155 } 159 }
156 160
157 static_library("test_support") { 161 static_library("test_support") {
158 testonly = true 162 testonly = true
159 sources = [ 163 sources = [
160 "autofill_test_utils.cc", 164 "autofill_test_utils.cc",
161 "autofill_test_utils.h", 165 "autofill_test_utils.h",
162 "data_driven_test.cc", 166 "data_driven_test.cc",
163 "data_driven_test.h", 167 "data_driven_test.h",
164 "suggestion_test_helpers.h", 168 "suggestion_test_helpers.h",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 "//sync", 246 "//sync",
243 "//sync:test_support_sync_api", 247 "//sync:test_support_sync_api",
244 "//testing/gmock", 248 "//testing/gmock",
245 "//testing/gtest", 249 "//testing/gtest",
246 "//third_party/libphonenumber", 250 "//third_party/libphonenumber",
247 "//third_party/libjingle", 251 "//third_party/libjingle",
248 "//ui/base", 252 "//ui/base",
249 "//url", 253 "//url",
250 ] 254 ]
251 } 255 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/wifi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698