Commit bf4545f9 authored by jbroman@chromium.org's avatar jbroman@chromium.org

Add //components/webdata/common to the GN build.

NOTRY=true

Review URL: https://codereview.chromium.org/366933003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282671 0039d316-1c4b-4281-b951-d872f2087c98
parent f2fb6946
...@@ -61,6 +61,7 @@ static_library("browser") { ...@@ -61,6 +61,7 @@ static_library("browser") {
"//components/translate/core/common", "//components/translate/core/common",
"//components/url_fixer", "//components/url_fixer",
"//components/user_prefs", "//components/user_prefs",
"//components/webdata/common",
"//content/public/browser", "//content/public/browser",
"//content/public/common", "//content/public/common",
"//courgette:courgette_lib", "//courgette:courgette_lib",
...@@ -100,7 +101,6 @@ static_library("browser") { ...@@ -100,7 +101,6 @@ static_library("browser") {
#"../components/components.gyp:signin_core_browser", #"../components/components.gyp:signin_core_browser",
#"../components/components.gyp:startup_metric_utils", #"../components/components.gyp:startup_metric_utils",
#"../components/components.gyp:sync_driver", #"../components/components.gyp:sync_driver",
#"../components/components.gyp:webdata_common",
#"../jingle/jingle.gyp:notifier", #"../jingle/jingle.gyp:notifier",
#"../third_party/libjingle/libjingle.gyp:libjingle", #"../third_party/libjingle/libjingle.gyp:libjingle",
#"../ui/message_center/message_center.gyp:message_center", #"../ui/message_center/message_center.gyp:message_center",
......
...@@ -55,6 +55,7 @@ group("all_components") { ...@@ -55,6 +55,7 @@ group("all_components") {
"//components/visitedlink/common", "//components/visitedlink/common",
"//components/visitedlink/renderer", "//components/visitedlink/renderer",
"//components/web_modal", "//components/web_modal",
"//components/webdata/common",
] ]
if (is_win || is_mac) { if (is_win || is_mac) {
......
...@@ -48,6 +48,7 @@ static_library("browser") { ...@@ -48,6 +48,7 @@ static_library("browser") {
"//components/os_crypt", "//components/os_crypt",
"//components/resources", "//components/resources",
"//components/strings", "//components/strings",
"//components/webdata/common",
"//content/public/browser", "//content/public/browser",
"//content/public/common", "//content/public/common",
"//google_apis", "//google_apis",
...@@ -62,7 +63,6 @@ static_library("browser") { ...@@ -62,7 +63,6 @@ static_library("browser") {
"//url", "//url",
#"../third_party/libjingle/libjingle.gyp:libjingle", TODO(GYP) #"../third_party/libjingle/libjingle.gyp:libjingle", TODO(GYP)
#"user_prefs", TODO(GYP) #"user_prefs", TODO(GYP)
#"webdata_common", TODO(GYP)
] ]
} }
......
...@@ -140,6 +140,7 @@ static_library("browser") { ...@@ -140,6 +140,7 @@ static_library("browser") {
"//components/os_crypt", "//components/os_crypt",
"//components/resources", "//components/resources",
"//components/strings", "//components/strings",
"//components/webdata/common",
"//google_apis", "//google_apis",
"//skia", "//skia",
"//sql", "//sql",
...@@ -154,7 +155,6 @@ static_library("browser") { ...@@ -154,7 +155,6 @@ static_library("browser") {
# TODO(GYP) also remove libjingle_stub_config below when this is added: # TODO(GYP) also remove libjingle_stub_config below when this is added:
#'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
#'pref_registry', TODO(GYP) #'pref_registry', TODO(GYP)
#'webdata_common', TODO(GYP)
] ]
configs += [ "//content:libjingle_stub_config" ] configs += [ "//content:libjingle_stub_config" ]
......
# 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("common") {
output_name = "webdata_common"
sources = [
"web_database.cc",
"web_database.h",
"web_database_service.cc",
"web_database_service.h",
"web_database_table.cc",
"web_database_table.h",
"web_data_request_manager.cc",
"web_data_request_manager.h",
"web_data_results.h",
"web_data_service_backend.cc",
"web_data_service_backend.h",
"web_data_service_base.cc",
"web_data_service_base.h",
"web_data_service_consumer.h",
"webdata_constants.cc",
"webdata_constants.h",
"webdata_export.h",
]
defines = [
"WEBDATA_IMPLEMENTATION",
]
deps = [
"//base",
"//sql",
]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment