Index: components/webdata/common/BUILD.gn |
diff --git a/components/webdata/common/BUILD.gn b/components/webdata/common/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cce6b05767ffa62b47ec656fcd1c14a72d248638 |
--- /dev/null |
+++ b/components/webdata/common/BUILD.gn |
@@ -0,0 +1,40 @@ |
+# 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", |
+ ] |
+ |
+ include_dirs = [ |
+ "..", |
tfarina
2014/07/04 23:43:28
are you sure you need this? I see webdata.gypi has
jbroman
2014/07/07 14:09:28
Quite correct. This path isn't even right anymore,
|
+ ] |
+ |
+ defines = [ |
+ "WEBDATA_IMPLEMENTATION", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
tfarina
2014/07/04 23:43:28
the above source list does not need chrome/browser
|
+ "//sql", |
+ ] |
+} |