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

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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/history/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../skia/skia.gyp:skia', 18 '../skia/skia.gyp:skia',
18 '../sql/sql.gyp:sql', 19 '../sql/sql.gyp:sql',
19 '../third_party/sqlite/sqlite.gyp:sqlite', 20 '../third_party/sqlite/sqlite.gyp:sqlite',
20 '../ui/base/ui_base.gyp:ui_base', 21 '../ui/base/ui_base.gyp:ui_base',
21 '../ui/gfx/gfx.gyp:gfx', 22 '../ui/gfx/gfx.gyp:gfx',
22 '../url/url.gyp:url_lib', 23 '../url/url.gyp:url_lib',
23 'favicon_base', 24 'favicon_base',
24 'history_core_browser_proto', 25 'history_core_browser_proto',
25 'keyed_service_core', 26 'keyed_service_core',
26 'query_parser', 27 'query_parser',
28 'signin_core_browser',
27 ], 29 ],
28 'sources': [ 30 'sources': [
29 # Note: sources list duplicated in GN build. 31 # Note: sources list duplicated in GN build.
30 'history/core/browser/download_constants.h', 32 'history/core/browser/download_constants.h',
31 'history/core/browser/download_database.cc', 33 'history/core/browser/download_database.cc',
32 'history/core/browser/download_database.h', 34 'history/core/browser/download_database.h',
33 'history/core/browser/download_row.cc', 35 'history/core/browser/download_row.cc',
34 'history/core/browser/download_row.h', 36 'history/core/browser/download_row.h',
35 'history/core/browser/download_types.cc', 37 'history/core/browser/download_types.cc',
36 'history/core/browser/download_types.h', 38 'history/core/browser/download_types.h',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'history/core/browser/url_utils.cc', 82 'history/core/browser/url_utils.cc',
81 'history/core/browser/url_utils.h', 83 'history/core/browser/url_utils.h',
82 'history/core/browser/visit_database.cc', 84 'history/core/browser/visit_database.cc',
83 'history/core/browser/visit_database.h', 85 'history/core/browser/visit_database.h',
84 'history/core/browser/visit_filter.cc', 86 'history/core/browser/visit_filter.cc',
85 'history/core/browser/visit_filter.h', 87 'history/core/browser/visit_filter.h',
86 'history/core/browser/visit_tracker.cc', 88 'history/core/browser/visit_tracker.cc',
87 'history/core/browser/visit_tracker.h', 89 'history/core/browser/visit_tracker.h',
88 'history/core/browser/visitsegment_database.cc', 90 'history/core/browser/visitsegment_database.cc',
89 'history/core/browser/visitsegment_database.h', 91 'history/core/browser/visitsegment_database.h',
92 'history/core/browser/web_history_service.cc',
93 'history/core/browser/web_history_service.h',
90 ], 94 ],
91 'conditions': [ 95 'conditions': [
92 ['OS=="android"', { 96 ['OS=="android"', {
93 'sources': [ 97 'sources': [
94 'history/core/browser/android/android_cache_database.cc', 98 'history/core/browser/android/android_cache_database.cc',
95 'history/core/browser/android/android_cache_database.h', 99 'history/core/browser/android/android_cache_database.h',
96 'history/core/browser/android/android_history_types.cc', 100 'history/core/browser/android/android_history_types.cc',
97 'history/core/browser/android/android_history_types.h', 101 'history/core/browser/android/android_history_types.h',
98 'history/core/browser/android/android_time.h', 102 'history/core/browser/android/android_time.h',
99 'history/core/browser/android/android_urls_database.cc', 103 'history/core/browser/android/android_urls_database.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'history/content/browser/history_context_helper.cc', 195 'history/content/browser/history_context_helper.cc',
192 'history/content/browser/history_context_helper.h', 196 'history/content/browser/history_context_helper.h',
193 'history/content/browser/history_database_helper.cc', 197 'history/content/browser/history_database_helper.cc',
194 'history/content/browser/history_database_helper.h', 198 'history/content/browser/history_database_helper.h',
195 ], 199 ],
196 } 200 }
197 ], 201 ],
198 }], 202 }],
199 ], 203 ],
200 } 204 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/history/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698