OLD | NEW |
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 # GN version: //components/history/core/browser | 8 # GN version: //components/history/core/browser |
9 'target_name': 'history_core_browser', | 9 'target_name': 'history_core_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '..', | 12 '..', |
13 ], | 13 ], |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
16 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
17 '../sql/sql.gyp:sql', | 17 '../sql/sql.gyp:sql', |
| 18 '../ui/gfx/gfx.gyp:gfx', |
18 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
| 20 'favicon_base', |
19 'keyed_service_core', | 21 'keyed_service_core', |
20 'query_parser', | 22 'query_parser', |
21 ], | 23 ], |
22 'sources': [ | 24 'sources': [ |
23 # Note: sources list duplicated in GN build. | 25 # Note: sources list duplicated in GN build. |
24 'history/core/browser/history_client.cc', | 26 'history/core/browser/history_client.cc', |
25 'history/core/browser/history_client.h', | 27 'history/core/browser/history_client.h', |
| 28 'history/core/browser/history_types.cc', |
| 29 'history/core/browser/history_types.h', |
26 'history/core/browser/history_match.cc', | 30 'history/core/browser/history_match.cc', |
27 'history/core/browser/history_match.h', | 31 'history/core/browser/history_match.h', |
28 'history/core/browser/in_memory_database.cc', | 32 'history/core/browser/in_memory_database.cc', |
29 'history/core/browser/in_memory_database.h', | 33 'history/core/browser/in_memory_database.h', |
30 'history/core/browser/keyword_id.h', | 34 'history/core/browser/keyword_id.h', |
31 'history/core/browser/keyword_search_term.cc', | 35 'history/core/browser/keyword_search_term.cc', |
32 'history/core/browser/keyword_search_term.h', | 36 'history/core/browser/keyword_search_term.h', |
| 37 'history/core/browser/page_usage_data.cc', |
| 38 'history/core/browser/page_usage_data.h', |
33 'history/core/browser/url_database.cc', | 39 'history/core/browser/url_database.cc', |
34 'history/core/browser/url_database.h', | 40 'history/core/browser/url_database.h', |
35 'history/core/browser/url_row.cc', | 41 'history/core/browser/url_row.cc', |
36 'history/core/browser/url_row.h', | 42 'history/core/browser/url_row.h', |
37 ], | 43 ], |
38 }, | 44 }, |
39 { | 45 { |
40 # GN version: //components/history/core/common | 46 # GN version: //components/history/core/common |
41 'target_name': 'history_core_common', | 47 'target_name': 'history_core_common', |
42 'type': 'static_library', | 48 'type': 'static_library', |
(...skipping 22 matching lines...) Expand all Loading... |
65 '../url/url.gyp:url_lib', | 71 '../url/url.gyp:url_lib', |
66 ], | 72 ], |
67 'sources': [ | 73 'sources': [ |
68 # Note: sources list duplicated in GN build. | 74 # Note: sources list duplicated in GN build. |
69 'history/core/test/history_client_fake_bookmarks.cc', | 75 'history/core/test/history_client_fake_bookmarks.cc', |
70 'history/core/test/history_client_fake_bookmarks.h', | 76 'history/core/test/history_client_fake_bookmarks.h', |
71 ], | 77 ], |
72 }, | 78 }, |
73 ], | 79 ], |
74 } | 80 } |
OLD | NEW |