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

Side by Side Diff: chrome/chrome.gyp

Issue 10777012: Disable uses of ProfileImportProcess on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build error on Clang Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/all_messages.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 'type': 'static_library', 244 'type': 'static_library',
245 'variables': { 'enable_wexit_time_destructors': 1, }, 245 'variables': { 'enable_wexit_time_destructors': 1, },
246 'dependencies': [ 246 'dependencies': [
247 '../base/base.gyp:base', 247 '../base/base.gyp:base',
248 '../content/content.gyp:content_utility', 248 '../content/content.gyp:content_utility',
249 '../skia/skia.gyp:skia', 249 '../skia/skia.gyp:skia',
250 ], 250 ],
251 'sources': [ 251 'sources': [
252 'utility/chrome_content_utility_client.cc', 252 'utility/chrome_content_utility_client.cc',
253 'utility/chrome_content_utility_client.h', 253 'utility/chrome_content_utility_client.h',
254 'utility/profile_import_handler.cc',
255 'utility/profile_import_handler.h',
254 ], 256 ],
255 'include_dirs': [ 257 'include_dirs': [
256 '..', 258 '..',
257 ], 259 ],
258 'conditions': [ 260 'conditions': [
259 ['toolkit_uses_gtk == 1', { 261 ['toolkit_uses_gtk == 1', {
260 'dependencies': [ 262 'dependencies': [
261 '../build/linux/system.gyp:gtk', 263 '../build/linux/system.gyp:gtk',
262 ], 264 ],
263 }], 265 }],
266 ['OS=="android"', {
267 'sources!': [
268 'utility/profile_import_handler.cc',
269 ],
270 }],
264 ], 271 ],
265 }, 272 },
266 { 273 {
267 'target_name': 'service', 274 'target_name': 'service',
268 'type': 'static_library', 275 'type': 'static_library',
269 'variables': { 'enable_wexit_time_destructors': 1, }, 276 'variables': { 'enable_wexit_time_destructors': 1, },
270 'dependencies': [ 277 'dependencies': [
271 'chrome_resources.gyp:chrome_strings', 278 'chrome_resources.gyp:chrome_strings',
272 'common', 279 'common',
273 'common_net', 280 'common_net',
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 'sources': [ 1062 'sources': [
1056 'browser/safe_browsing/signature_util.h', 1063 'browser/safe_browsing/signature_util.h',
1057 'browser/safe_browsing/signature_util_win.cc', 1064 'browser/safe_browsing/signature_util_win.cc',
1058 'tools/safe_browsing/sb_sigutil.cc', 1065 'tools/safe_browsing/sb_sigutil.cc',
1059 ], 1066 ],
1060 }, 1067 },
1061 ]}, # 'targets' 1068 ]}, # 'targets'
1062 ], # OS=="win" 1069 ], # OS=="win"
1063 ], # 'conditions' 1070 ], # 'conditions'
1064 } 1071 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/all_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698