forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.gypi
74 lines (73 loc) · 2.22 KB
/
history.gypi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# 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.
{
'targets': [
{
# GN version: //components/history/core/browser
'target_name': 'history_core_browser',
'type': 'static_library',
'include_dirs': [
'..',
],
'dependencies': [
'../base/base.gyp:base',
'../net/net.gyp:net',
'../sql/sql.gyp:sql',
'../url/url.gyp:url_lib',
'keyed_service_core',
'query_parser',
],
'sources': [
# Note: sources list duplicated in GN build.
'history/core/browser/history_client.cc',
'history/core/browser/history_client.h',
'history/core/browser/history_match.cc',
'history/core/browser/history_match.h',
'history/core/browser/in_memory_database.cc',
'history/core/browser/in_memory_database.h',
'history/core/browser/keyword_id.h',
'history/core/browser/keyword_search_term.cc',
'history/core/browser/keyword_search_term.h',
'history/core/browser/url_database.cc',
'history/core/browser/url_database.h',
'history/core/browser/url_row.cc',
'history/core/browser/url_row.h',
],
},
{
# GN version: //components/history/core/common
'target_name': 'history_core_common',
'type': 'static_library',
'include_dirs': [
'..',
],
'dependencies': [
'../base/base.gyp:base',
],
'sources': [
# Note: sources list duplicated in GN build.
'history/core/common/thumbnail_score.cc',
'history/core/common/thumbnail_score.h',
],
},
{
# GN version: //components/history/core/test
'target_name': 'history_core_test_support',
'type': 'static_library',
'include_dirs': [
'..',
],
'dependencies': [
'history_core_browser',
'../base/base.gyp:base',
'../url/url.gyp:url_lib',
],
'sources': [
# Note: sources list duplicated in GN build.
'history/core/test/history_client_fake_bookmarks.cc',
'history/core/test/history_client_fake_bookmarks.h',
],
},
],
}