| 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") {
|
| + 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",
|
| + ]
|
| +}
|
|
|