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 '../google_apis/google_apis.gyp:google_apis', | |
17 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
18 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
19 '../sql/sql.gyp:sql', | 18 '../sql/sql.gyp:sql', |
20 '../third_party/sqlite/sqlite.gyp:sqlite', | 19 '../third_party/sqlite/sqlite.gyp:sqlite', |
21 '../ui/base/ui_base.gyp:ui_base', | 20 '../ui/base/ui_base.gyp:ui_base', |
22 '../ui/gfx/gfx.gyp:gfx', | 21 '../ui/gfx/gfx.gyp:gfx', |
23 '../url/url.gyp:url_lib', | 22 '../url/url.gyp:url_lib', |
24 'favicon_base', | 23 'favicon_base', |
25 'history_core_browser_proto', | 24 'history_core_browser_proto', |
26 'keyed_service_core', | 25 'keyed_service_core', |
27 'query_parser', | 26 'query_parser', |
28 'signin_core_browser', | |
29 ], | 27 ], |
30 'sources': [ | 28 'sources': [ |
31 # Note: sources list duplicated in GN build. | 29 # Note: sources list duplicated in GN build. |
32 'history/core/browser/download_constants.h', | 30 'history/core/browser/download_constants.h', |
33 'history/core/browser/download_database.cc', | 31 'history/core/browser/download_database.cc', |
34 'history/core/browser/download_database.h', | 32 'history/core/browser/download_database.h', |
35 'history/core/browser/download_row.cc', | 33 'history/core/browser/download_row.cc', |
36 'history/core/browser/download_row.h', | 34 'history/core/browser/download_row.h', |
37 'history/core/browser/download_types.cc', | 35 'history/core/browser/download_types.cc', |
38 'history/core/browser/download_types.h', | 36 'history/core/browser/download_types.h', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'history/core/browser/url_utils.cc', | 80 'history/core/browser/url_utils.cc', |
83 'history/core/browser/url_utils.h', | 81 'history/core/browser/url_utils.h', |
84 'history/core/browser/visit_database.cc', | 82 'history/core/browser/visit_database.cc', |
85 'history/core/browser/visit_database.h', | 83 'history/core/browser/visit_database.h', |
86 'history/core/browser/visit_filter.cc', | 84 'history/core/browser/visit_filter.cc', |
87 'history/core/browser/visit_filter.h', | 85 'history/core/browser/visit_filter.h', |
88 'history/core/browser/visit_tracker.cc', | 86 'history/core/browser/visit_tracker.cc', |
89 'history/core/browser/visit_tracker.h', | 87 'history/core/browser/visit_tracker.h', |
90 'history/core/browser/visitsegment_database.cc', | 88 'history/core/browser/visitsegment_database.cc', |
91 'history/core/browser/visitsegment_database.h', | 89 'history/core/browser/visitsegment_database.h', |
92 'history/core/browser/web_history_service.cc', | |
93 'history/core/browser/web_history_service.h', | |
94 ], | 90 ], |
95 'conditions': [ | 91 'conditions': [ |
96 ['OS=="android"', { | 92 ['OS=="android"', { |
97 'sources': [ | 93 'sources': [ |
98 'history/core/browser/android/android_cache_database.cc', | 94 'history/core/browser/android/android_cache_database.cc', |
99 'history/core/browser/android/android_cache_database.h', | 95 'history/core/browser/android/android_cache_database.h', |
100 'history/core/browser/android/android_history_types.cc', | 96 'history/core/browser/android/android_history_types.cc', |
101 'history/core/browser/android/android_history_types.h', | 97 'history/core/browser/android/android_history_types.h', |
102 'history/core/browser/android/android_time.h', | 98 'history/core/browser/android/android_time.h', |
103 'history/core/browser/android/android_urls_database.cc', | 99 'history/core/browser/android/android_urls_database.cc', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'history/content/browser/history_context_helper.cc', | 191 'history/content/browser/history_context_helper.cc', |
196 'history/content/browser/history_context_helper.h', | 192 'history/content/browser/history_context_helper.h', |
197 'history/content/browser/history_database_helper.cc', | 193 'history/content/browser/history_database_helper.cc', |
198 'history/content/browser/history_database_helper.h', | 194 'history/content/browser/history_database_helper.h', |
199 ], | 195 ], |
200 } | 196 } |
201 ], | 197 ], |
202 }], | 198 }], |
203 ], | 199 ], |
204 } | 200 } |
OLD | NEW |