Chromium Code Reviews| Index: components/webdata_services/BUILD.gn |
| diff --git a/components/webdata_services/BUILD.gn b/components/webdata_services/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bcf2ae5d316ef22632b579fd39600f5183a73b5c |
| --- /dev/null |
| +++ b/components/webdata_services/BUILD.gn |
| @@ -0,0 +1,25 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +component("webdata_services") { |
|
tfarina
2014/12/09 15:48:27
could you run `gn check //components/webdata_servi
jochen (gone - plz use gerrit)
2014/12/09 15:52:28
uh, right, the GN configuration says component and
sdefresne
2014/12/12 16:53:37
Done, and added the missing dependency.
|
| + output_name = "webdata_services" |
| + |
| + sources = [ |
| + "web_data_service_wrapper.cc", |
| + "web_data_service_wrapper.h", |
| + "webdata_services_export.h", |
| + ] |
| + |
| + defines = [ "WEBDATA_SERVICES_IMPLEMENTATION" ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/autofill/core/browser", |
| + "//components/password_manager/core/browser", |
| + "//components/search_engines", |
| + "//components/signin/core/browser", |
| + "//components/webdata/common", |
| + "//sql", |
| + ] |
| +} |