Make pop-up menus more easily dismissable.
[chromium-blink-merge.git] / components / history.gypi
blobe413d34ec3f62b227ff8a7dff4b13107da0f0a9e
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.
6   'targets': [
7     {
8       # GN version: //components/history/core/browser
9       'target_name': 'history_core_browser',
10       'type': 'static_library',
11       'include_dirs': [
12         '..',
13       ],
14       'dependencies': [
15         '../base/base.gyp:base',
16         '../net/net.gyp:net',
17         '../sql/sql.gyp:sql',
18         '../ui/gfx/gfx.gyp:gfx',
19         '../url/url.gyp:url_lib',
20         'favicon_base',
21         'keyed_service_core',
22         'query_parser',
23       ],
24       'sources': [
25         # Note: sources list duplicated in GN build.
26         'history/core/browser/history_client.cc',
27         'history/core/browser/history_client.h',
28         'history/core/browser/history_types.cc',
29         'history/core/browser/history_types.h',
30         'history/core/browser/history_match.cc',
31         'history/core/browser/history_match.h',
32         'history/core/browser/in_memory_database.cc',
33         'history/core/browser/in_memory_database.h',
34         'history/core/browser/keyword_id.h',
35         'history/core/browser/keyword_search_term.cc',
36         'history/core/browser/keyword_search_term.h',
37         'history/core/browser/page_usage_data.cc',
38         'history/core/browser/page_usage_data.h',
39         'history/core/browser/top_sites_observer.h',
40         'history/core/browser/url_database.cc',
41         'history/core/browser/url_database.h',
42         'history/core/browser/url_row.cc',
43         'history/core/browser/url_row.h',
44       ],
45     },
46     {
47       # GN version: //components/history/core/common
48       'target_name': 'history_core_common',
49       'type': 'static_library',
50       'include_dirs': [
51         '..',
52       ],
53       'dependencies': [
54         '../base/base.gyp:base',
55       ],
56       'sources': [
57         # Note: sources list duplicated in GN build.
58         'history/core/common/thumbnail_score.cc',
59         'history/core/common/thumbnail_score.h',
60       ],
61     },
62     {
63       # GN version: //components/history/core/test
64       'target_name': 'history_core_test_support',
65       'type': 'static_library',
66       'include_dirs': [
67         '..',
68       ],
69       'dependencies': [
70         'history_core_browser',
71         '../base/base.gyp:base',
72         '../url/url.gyp:url_lib',
73       ],
74       'sources': [
75         # Note: sources list duplicated in GN build.
76         'history/core/test/history_client_fake_bookmarks.cc',
77         'history/core/test/history_client_fake_bookmarks.h',
78       ],
79     },
80   ],