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 # GYP version: components/autofill.gypi:autofill_content_browser | 7 # GYP version: components/autofill.gypi:autofill_content_browser |
8 static_library("browser") { | 8 static_library("browser") { |
9 sources = [ | 9 sources = [ |
10 "content_autofill_driver.cc", | 10 "content_autofill_driver.cc", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "//components/user_prefs", | 51 "//components/user_prefs", |
52 "//components/webdata/common", | 52 "//components/webdata/common", |
53 "//content/public/browser", | 53 "//content/public/browser", |
54 "//content/public/common", | 54 "//content/public/common", |
55 "//google_apis", | 55 "//google_apis", |
56 "//ipc", | 56 "//ipc", |
57 "//skia", | 57 "//skia", |
58 "//sql", | 58 "//sql", |
59 "//third_party/icu", | 59 "//third_party/icu", |
60 "//third_party/libphonenumber", | 60 "//third_party/libphonenumber", |
| 61 "//third_party/libjingle", |
61 "//ui/base", | 62 "//ui/base", |
62 "//ui/gfx", | 63 "//ui/gfx", |
63 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
64 "//url", | 65 "//url", |
65 #"../third_party/libjingle/libjingle.gyp:libjingle", TODO(GYP) | |
66 ] | 66 ] |
67 | 67 |
68 forward_dependent_configs_from = [ | 68 forward_dependent_configs_from = [ |
69 "//skia", | 69 "//skia", |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
73 proto_library("risk_proto") { | 73 proto_library("risk_proto") { |
74 sources = [ | 74 sources = [ |
75 "risk/proto/fingerprint.proto", | 75 "risk/proto/fingerprint.proto", |
(...skipping 27 matching lines...) Expand all Loading... |
103 "wallet/wallet_signin_helper_unittest.cc", | 103 "wallet/wallet_signin_helper_unittest.cc", |
104 ] | 104 ] |
105 | 105 |
106 deps = [ | 106 deps = [ |
107 ":browser", | 107 ":browser", |
108 ":test_support", | 108 ":test_support", |
109 "//testing/gmock", | 109 "//testing/gmock", |
110 "//testing/gtest", | 110 "//testing/gtest", |
111 ] | 111 ] |
112 } | 112 } |
OLD | NEW |