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

Side by Side Diff: components/history.gypi

Issue 339433007: Componentize URLDatabase (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'history_core_browser', 8 'target_name': 'history_core_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../net/net.gyp:net',
15 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
16 'keyed_service_core', 17 'keyed_service_core',
18 'query_parser',
17 ], 19 ],
18 'sources': [ 20 'sources': [
21 'history/core/browser/history_client.cc',
19 'history/core/browser/history_client.h', 22 'history/core/browser/history_client.h',
20 'history/core/browser/history_client.cc',
21 'history/core/browser/keyword_id.h', 23 'history/core/browser/keyword_id.h',
24 'history/core/browser/keyword_search_term.cc',
25 'history/core/browser/keyword_search_term.h',
26 'history/core/browser/url_database.cc',
27 'history/core/browser/url_database.h',
28 'history/core/browser/url_row.cc',
29 'history/core/browser/url_row.h',
22 ], 30 ],
23 }, 31 },
24 { 32 {
25 'target_name': 'history_core_common', 33 'target_name': 'history_core_common',
26 'type': 'static_library', 34 'type': 'static_library',
27 'include_dirs': [ 35 'include_dirs': [
28 '..', 36 '..',
29 ], 37 ],
30 'dependencies': [ 38 'dependencies': [
31 '../base/base.gyp:base', 39 '../base/base.gyp:base',
(...skipping 14 matching lines...) Expand all
46 '../base/base.gyp:base', 54 '../base/base.gyp:base',
47 '../url/url.gyp:url_lib', 55 '../url/url.gyp:url_lib',
48 ], 56 ],
49 'sources': [ 57 'sources': [
50 'history/core/test/history_client_fake_bookmarks.cc', 58 'history/core/test/history_client_fake_bookmarks.cc',
51 'history/core/test/history_client_fake_bookmarks.h', 59 'history/core/test/history_client_fake_bookmarks.h',
52 ], 60 ],
53 }, 61 },
54 ], 62 ],
55 } 63 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698