Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(387)

Side by Side Diff: components/webdata/common/BUILD.gn

Issue 366933003: Add //components/webdata/common to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: output_name Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 component("common") {
6 output_name = "webdata_common"
7
8 sources = [
9 "web_database.cc",
10 "web_database.h",
11 "web_database_service.cc",
12 "web_database_service.h",
13 "web_database_table.cc",
14 "web_database_table.h",
15 "web_data_request_manager.cc",
16 "web_data_request_manager.h",
17 "web_data_results.h",
18 "web_data_service_backend.cc",
19 "web_data_service_backend.h",
20 "web_data_service_base.cc",
21 "web_data_service_base.h",
22 "web_data_service_consumer.h",
23 "webdata_constants.cc",
24 "webdata_constants.h",
25 "webdata_export.h",
26 ]
27
28 include_dirs = [
29 "..",
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,
30 ]
31
32 defines = [
33 "WEBDATA_IMPLEMENTATION",
34 ]
35
36 deps = [
37 "//base",
tfarina 2014/07/04 23:43:28 the above source list does not need chrome/browser
38 "//sql",
39 ]
40 }
OLDNEW
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698