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

Side by Side Diff: chrome/chrome_utility.gypi

Issue 616763002: Importing certain bookmarks from firefox and HTML file as search engines. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor changes. Created 6 years 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 'variables': { 6 'variables': {
7 'chrome_utility_sources': [ 7 'chrome_utility_sources': [
8 'utility/chrome_content_utility_client.cc', 8 'utility/chrome_content_utility_client.cc',
9 'utility/chrome_content_utility_client.h', 9 'utility/chrome_content_utility_client.h',
10 'utility/chrome_content_utility_ipc_whitelist.cc', 10 'utility/chrome_content_utility_ipc_whitelist.cc',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 }, 96 },
97 'targets': [ 97 'targets': [
98 { 98 {
99 # GN version: //chrome/utility 99 # GN version: //chrome/utility
100 'target_name': 'utility', 100 'target_name': 'utility',
101 'type': 'static_library', 101 'type': 'static_library',
102 'variables': { 'enable_wexit_time_destructors': 1, }, 102 'variables': { 'enable_wexit_time_destructors': 1, },
103 'dependencies': [ 103 'dependencies': [
104 '../base/base.gyp:base', 104 '../base/base.gyp:base',
105 '../components/components_strings.gyp:components_strings', 105 '../components/components_strings.gyp:components_strings',
106 '../components/components.gyp:search_engines',
Ilya Sherman 2015/01/07 22:51:26 You probably need to update the //chrome/utility/B
Tapu Ghose 2015/01/09 11:22:53 Acknowledged.
106 '../components/components.gyp:url_fixer', 107 '../components/components.gyp:url_fixer',
107 '../content/content.gyp:content_common', 108 '../content/content.gyp:content_common',
108 '../content/content.gyp:content_utility', 109 '../content/content.gyp:content_utility',
109 '../media/media.gyp:media', 110 '../media/media.gyp:media',
110 '../skia/skia.gyp:skia', 111 '../skia/skia.gyp:skia',
111 '../third_party/libxml/libxml.gyp:libxml', 112 '../third_party/libxml/libxml.gyp:libxml',
112 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 113 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
113 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 114 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
114 'common', 115 'common',
115 ], 116 ],
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 }], 187 }],
187 ['safe_browsing==1', { 188 ['safe_browsing==1', {
188 'defines': [ 'FULL_SAFE_BROWSING' ], 189 'defines': [ 'FULL_SAFE_BROWSING' ],
189 }], 190 }],
190 ], 191 ],
191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
192 'msvs_disabled_warnings': [ 4267, ], 193 'msvs_disabled_warnings': [ 4267, ],
193 }, 194 },
194 ], 195 ],
195 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698