Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: components/history.gypi

Issue 882753002: Componentize WebHistoryService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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',
16 '../net/net.gyp:net', 17 '../net/net.gyp:net',
17 '../sql/sql.gyp:sql', 18 '../sql/sql.gyp:sql',
18 '../third_party/sqlite/sqlite.gyp:sqlite', 19 '../third_party/sqlite/sqlite.gyp:sqlite',
19 '../ui/base/ui_base.gyp:ui_base', 20 '../ui/base/ui_base.gyp:ui_base',
20 '../ui/gfx/gfx.gyp:gfx', 21 '../ui/gfx/gfx.gyp:gfx',
21 '../url/url.gyp:url_lib', 22 '../url/url.gyp:url_lib',
22 'favicon_base', 23 'favicon_base',
23 'history_core_browser_proto', 24 'history_core_browser_proto',
24 'keyed_service_core', 25 'keyed_service_core',
25 'query_parser', 26 'query_parser',
27 'signin_core_browser',
26 ], 28 ],
27 'sources': [ 29 'sources': [
28 # Note: sources list duplicated in GN build. 30 # Note: sources list duplicated in GN build.
29 'history/core/browser/download_constants.h', 31 'history/core/browser/download_constants.h',
30 'history/core/browser/download_database.cc', 32 'history/core/browser/download_database.cc',
31 'history/core/browser/download_database.h', 33 'history/core/browser/download_database.h',
32 'history/core/browser/download_row.cc', 34 'history/core/browser/download_row.cc',
33 'history/core/browser/download_row.h', 35 'history/core/browser/download_row.h',
34 'history/core/browser/download_types.cc', 36 'history/core/browser/download_types.cc',
35 'history/core/browser/download_types.h', 37 'history/core/browser/download_types.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'history/core/browser/url_utils.cc', 75 'history/core/browser/url_utils.cc',
74 'history/core/browser/url_utils.h', 76 'history/core/browser/url_utils.h',
75 'history/core/browser/visit_database.cc', 77 'history/core/browser/visit_database.cc',
76 'history/core/browser/visit_database.h', 78 'history/core/browser/visit_database.h',
77 'history/core/browser/visit_filter.cc', 79 'history/core/browser/visit_filter.cc',
78 'history/core/browser/visit_filter.h', 80 'history/core/browser/visit_filter.h',
79 'history/core/browser/visit_tracker.cc', 81 'history/core/browser/visit_tracker.cc',
80 'history/core/browser/visit_tracker.h', 82 'history/core/browser/visit_tracker.h',
81 'history/core/browser/visitsegment_database.cc', 83 'history/core/browser/visitsegment_database.cc',
82 'history/core/browser/visitsegment_database.h', 84 'history/core/browser/visitsegment_database.h',
85 'history/core/browser/web_history_service.cc',
86 'history/core/browser/web_history_service.h',
83 ], 87 ],
84 'conditions': [ 88 'conditions': [
85 ['OS=="android"', { 89 ['OS=="android"', {
86 'sources': [ 90 'sources': [
87 'history/core/browser/android/android_cache_database.cc', 91 'history/core/browser/android/android_cache_database.cc',
88 'history/core/browser/android/android_cache_database.h', 92 'history/core/browser/android/android_cache_database.h',
89 'history/core/browser/android/android_history_types.cc', 93 'history/core/browser/android/android_history_types.cc',
90 'history/core/browser/android/android_history_types.h', 94 'history/core/browser/android/android_history_types.h',
91 'history/core/browser/android/android_time.h', 95 'history/core/browser/android/android_time.h',
92 'history/core/browser/android/android_urls_database.cc', 96 'history/core/browser/android/android_urls_database.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'history/content/browser/history_context_helper.cc', 186 'history/content/browser/history_context_helper.cc',
183 'history/content/browser/history_context_helper.h', 187 'history/content/browser/history_context_helper.h',
184 'history/content/browser/history_database_helper.cc', 188 'history/content/browser/history_database_helper.cc',
185 'history/content/browser/history_database_helper.h', 189 'history/content/browser/history_database_helper.h',
186 ], 190 ],
187 } 191 }
188 ], 192 ],
189 }], 193 }],
190 ], 194 ],
191 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698