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

Side by Side Diff: components/search_engines.gypi

Issue 1598553003: Implement the Windows desktop search redirection feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build errors due to prefs being moved in components Created 4 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 | « components/infobars/core/infobar_delegate.h ('k') | components/search_engines/BUILD.gn » ('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/search_engines 8 # GN version: //components/search_engines
9 'target_name': 'search_engines', 9 'target_name': 'search_engines',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../google_apis/google_apis.gyp:google_apis', 13 '../google_apis/google_apis.gyp:google_apis',
14 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 '../sql/sql.gyp:sql', 15 '../sql/sql.gyp:sql',
16 '../sync/sync.gyp:sync', 16 '../sync/sync.gyp:sync',
17 '../third_party/libxml/libxml.gyp:libxml', 17 '../third_party/libxml/libxml.gyp:libxml',
18 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
19 '../url/url.gyp:url_lib', 19 '../url/url.gyp:url_lib',
20 'component_metrics_proto', 20 'component_metrics_proto',
21 'components_strings.gyp:components_strings', 21 'components_strings.gyp:components_strings',
22 'components.gyp:infobars_core',
22 'google_core_browser', 23 'google_core_browser',
23 'history_core_browser', 24 'history_core_browser',
24 'keyed_service_core', 25 'keyed_service_core',
25 'policy', 26 'policy',
26 'pref_registry', 27 'pref_registry',
28 'prefs/prefs.gyp:prefs',
27 'rappor', 29 'rappor',
28 'search_engines/prepopulated_engines.gyp:prepopulated_engines', 30 'search_engines/prepopulated_engines.gyp:prepopulated_engines',
29 'sync_driver', 31 'sync_driver',
30 'url_formatter/url_formatter.gyp:url_formatter', 32 'url_formatter/url_formatter.gyp:url_formatter',
31 'webdata_common', 33 'webdata_common',
32 ], 34 ],
33 'export_dependent_settings': [ 35 'export_dependent_settings': [
34 'component_metrics_proto', 36 'component_metrics_proto',
35 ], 37 ],
36 'include_dirs': [ 38 'include_dirs': [
37 '..', 39 '..',
38 ], 40 ],
39 'sources': [ 41 'sources': [
40 # Note: sources list duplicated in GN build. 42 # Note: sources list duplicated in GN build.
41 'search_engines/default_search_manager.cc', 43 'search_engines/default_search_manager.cc',
42 'search_engines/default_search_manager.h', 44 'search_engines/default_search_manager.h',
43 'search_engines/default_search_policy_handler.cc', 45 'search_engines/default_search_policy_handler.cc',
44 'search_engines/default_search_policy_handler.h', 46 'search_engines/default_search_policy_handler.h',
45 'search_engines/default_search_pref_migration.cc', 47 'search_engines/default_search_pref_migration.cc',
46 'search_engines/default_search_pref_migration.h', 48 'search_engines/default_search_pref_migration.h',
47 'search_engines/desktop_search_win.cc', 49 'search_engines/desktop_search_redirection_infobar_delegate.cc',
48 'search_engines/desktop_search_win.h', 50 'search_engines/desktop_search_redirection_infobar_delegate.h',
51 'search_engines/desktop_search_utils.cc',
52 'search_engines/desktop_search_utils.h',
49 'search_engines/keyword_table.cc', 53 'search_engines/keyword_table.cc',
50 'search_engines/keyword_table.h', 54 'search_engines/keyword_table.h',
51 'search_engines/keyword_web_data_service.cc', 55 'search_engines/keyword_web_data_service.cc',
52 'search_engines/keyword_web_data_service.h', 56 'search_engines/keyword_web_data_service.h',
53 'search_engines/search_engine_data_type_controller.cc', 57 'search_engines/search_engine_data_type_controller.cc',
54 'search_engines/search_engine_data_type_controller.h', 58 'search_engines/search_engine_data_type_controller.h',
55 'search_engines/search_engine_type.h', 59 'search_engines/search_engine_type.h',
56 'search_engines/search_engines_pref_names.cc', 60 'search_engines/search_engines_pref_names.cc',
57 'search_engines/search_engines_pref_names.h', 61 'search_engines/search_engines_pref_names.h',
58 'search_engines/search_engines_switches.cc', 62 'search_engines/search_engines_switches.cc',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ], 108 ],
105 'sources': [ 109 'sources': [
106 'search_engines/default_search_pref_test_util.cc', 110 'search_engines/default_search_pref_test_util.cc',
107 'search_engines/default_search_pref_test_util.h', 111 'search_engines/default_search_pref_test_util.h',
108 'search_engines/testing_search_terms_data.cc', 112 'search_engines/testing_search_terms_data.cc',
109 'search_engines/testing_search_terms_data.h', 113 'search_engines/testing_search_terms_data.h',
110 ], 114 ],
111 }, 115 },
112 ], 116 ],
113 } 117 }
OLDNEW
« no previous file with comments | « components/infobars/core/infobar_delegate.h ('k') | components/search_engines/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698