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

Side by Side Diff: chrome/chrome.gyp

Issue 11348052: [sync] Componentize sync: Part 1: Clean up sync.gyp and update chrome / test dependencies (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More CR Feedback Created 8 years, 1 month 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/chrome_browser.gypi » ('j') | sync/sync.gyp » ('J')
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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
11 # Linux or Mac, and into chrome.dll on Windows. 11 # Linux or Mac, and into chrome.dll on Windows.
12 'chromium_dependencies': [ 12 'chromium_dependencies': [
13 'common', 13 'common',
14 'browser', 14 'browser',
15 'debugger', 15 'debugger',
16 'plugin', 16 'plugin',
17 'renderer', 17 'renderer',
18 'utility', 18 'utility',
19 '../content/content.gyp:content_app', 19 '../content/content.gyp:content_app',
20 '../content/content.gyp:content_gpu', 20 '../content/content.gyp:content_gpu',
21 '../content/content.gyp:content_ppapi_plugin', 21 '../content/content.gyp:content_ppapi_plugin',
22 '../content/content.gyp:content_worker', 22 '../content/content.gyp:content_worker',
23 '../sync/sync.gyp:syncapi_core', 23 '../sync/sync.gyp:sync_core',
24 '../printing/printing.gyp:printing', 24 '../printing/printing.gyp:printing',
25 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc es', 25 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc es',
26 ], 26 ],
27 'allocator_target': '../base/allocator/allocator.gyp:allocator', 27 'allocator_target': '../base/allocator/allocator.gyp:allocator',
28 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 28 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
29 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', 29 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out',
30 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 30 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
31 # TODO: remove this helper when we have loops in GYP 31 # TODO: remove this helper when we have loops in GYP
32 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], 32 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'],
33 'conditions': [ 33 'conditions': [
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 }], 360 }],
361 ], 361 ],
362 }, 362 },
363 { 363 {
364 'target_name': 'ipclist', 364 'target_name': 'ipclist',
365 'type': 'executable', 365 'type': 'executable',
366 'variables': { 'enable_wexit_time_destructors': 1, }, 366 'variables': { 'enable_wexit_time_destructors': 1, },
367 'dependencies': [ 367 'dependencies': [
368 'test_support_common', 368 'test_support_common',
369 '../skia/skia.gyp:skia', 369 '../skia/skia.gyp:skia',
370 '../sync/sync.gyp:sync_core',
370 ], 371 ],
371 'include_dirs': [ 372 'include_dirs': [
372 '..', 373 '..',
373 ], 374 ],
374 'sources': [ 375 'sources': [
375 'tools/ipclist/ipclist.cc', 376 'tools/ipclist/ipclist.cc',
376 ], 377 ],
377 }, 378 },
378 ], 379 ],
379 'conditions': [ 380 'conditions': [
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 '../build/java.gypi', 1064 '../build/java.gypi',
1064 ], 1065 ],
1065 }, 1066 },
1066 ], # 'targets' 1067 ], # 'targets'
1067 'includes': [ 1068 'includes': [
1068 'chrome_android.gypi', 1069 'chrome_android.gypi',
1069 ]}, # 'includes' 1070 ]}, # 'includes'
1070 ], # OS=="android" 1071 ], # OS=="android"
1071 ], # 'conditions' 1072 ], # 'conditions'
1072 } 1073 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | sync/sync.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698