Make the custom launcher page's WebContents transparent.
[chromium-blink-merge.git] / components / history.gypi
blob870d866db95a32bdc681be091461013fa1946e2f
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/base/ui_base.gyp:ui_base',
19         '../ui/gfx/gfx.gyp:gfx',
20         '../url/url.gyp:url_lib',
21         'favicon_base',
22         'keyed_service_core',
23         'query_parser',
24       ],
25       'sources': [
26         # Note: sources list duplicated in GN build.
27         'history/core/browser/history_backend_notifier.h',
28         'history/core/browser/history_backend_observer.h',
29         'history/core/browser/history_client.cc',
30         'history/core/browser/history_client.h',
31         'history/core/browser/history_match.cc',
32         'history/core/browser/history_match.h',
33         'history/core/browser/history_service_observer.h',
34         'history/core/browser/history_types.cc',
35         'history/core/browser/history_types.h',
36         'history/core/browser/in_memory_database.cc',
37         'history/core/browser/in_memory_database.h',
38         'history/core/browser/keyword_id.h',
39         'history/core/browser/keyword_search_term.cc',
40         'history/core/browser/keyword_search_term.h',
41         'history/core/browser/page_usage_data.cc',
42         'history/core/browser/page_usage_data.h',
43         'history/core/browser/top_sites_observer.h',
44         'history/core/browser/url_database.cc',
45         'history/core/browser/url_database.h',
46         'history/core/browser/url_row.cc',
47         'history/core/browser/url_row.h',
48       ],
49     },
50     {
51       # GN version: //components/history/core/common
52       'target_name': 'history_core_common',
53       'type': 'static_library',
54       'include_dirs': [
55         '..',
56       ],
57       'dependencies': [
58         '../base/base.gyp:base',
59       ],
60       'sources': [
61         # Note: sources list duplicated in GN build.
62         'history/core/common/thumbnail_score.cc',
63         'history/core/common/thumbnail_score.h',
64       ],
65     },
66     {
67       # GN version: //components/history/core/test
68       'target_name': 'history_core_test_support',
69       'type': 'static_library',
70       'include_dirs': [
71         '..',
72       ],
73       'dependencies': [
74         'history_core_browser',
75         '../base/base.gyp:base',
76         '../url/url.gyp:url_lib',
77       ],
78       'sources': [
79         # Note: sources list duplicated in GN build.
80         'history/core/test/history_client_fake_bookmarks.cc',
81         'history/core/test/history_client_fake_bookmarks.h',
82       ],
83     },
84   ],
85   'conditions': [
86     ['OS=="android"', {
87       'targets': [
88         {
89           # GN version: //components/history/code/android
90           'target_name': 'history_core_android',
91           'type': 'static_library',
92           'include_dirs': [
93             '..',
94           ],
95           'dependencies': [
96             '../base/base.gyp:base',
97             '../sql/sql.gyp:sql',
98             'history_core_browser',
99           ],
100           'sources': [
101             'history/core/android/android_history_types.cc',
102             'history/core/android/android_history_types.h',
103           ],
104         },
105       ],
106     }],
107   ],