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

Side by Side Diff: chrome/chrome.gyp

Issue 11412211: [sync] Componentize sync: Part Final: Target 'sync' is now its own component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on r171683 (no code changes) Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | chrome/chrome_tests.gypi » ('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 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 # NOTE: Most new includes should go in the OS!="ios" condition below. 12 # NOTE: Most new includes should go in the OS!="ios" condition below.
13 'chromium_dependencies': [ 13 'chromium_dependencies': [
14 'common', 14 'common',
15 'browser', 15 'browser',
16 '../content/content.gyp:content_app', 16 '../content/content.gyp:content_app',
17 '../sync/sync.gyp:sync_core', 17 '../sync/sync.gyp:sync',
18 ], 18 ],
19 'allocator_target': '../base/allocator/allocator.gyp:allocator', 19 'allocator_target': '../base/allocator/allocator.gyp:allocator',
20 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 20 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
21 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', 21 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out',
22 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 22 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
23 # TODO: remove this helper when we have loops in GYP 23 # TODO: remove this helper when we have loops in GYP
24 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], 24 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'],
25 'conditions': [ 25 'conditions': [
26 ['OS!="ios"', { 26 ['OS!="ios"', {
27 'chromium_dependencies': [ 27 'chromium_dependencies': [
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 }], 377 }],
378 ], 378 ],
379 }, 379 },
380 { 380 {
381 'target_name': 'ipclist', 381 'target_name': 'ipclist',
382 'type': 'executable', 382 'type': 'executable',
383 'variables': { 'enable_wexit_time_destructors': 1, }, 383 'variables': { 'enable_wexit_time_destructors': 1, },
384 'dependencies': [ 384 'dependencies': [
385 'test_support_common', 385 'test_support_common',
386 '../skia/skia.gyp:skia', 386 '../skia/skia.gyp:skia',
387 '../sync/sync.gyp:sync_core', 387 '../sync/sync.gyp:sync',
388 ], 388 ],
389 'include_dirs': [ 389 'include_dirs': [
390 '..', 390 '..',
391 ], 391 ],
392 'sources': [ 392 'sources': [
393 'tools/ipclist/ipclist.cc', 393 'tools/ipclist/ipclist.cc',
394 ], 394 ],
395 }, 395 },
396 ], 396 ],
397 }], # OS!="ios" 397 }], # OS!="ios"
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 '../build/java.gypi', 1085 '../build/java.gypi',
1086 ], 1086 ],
1087 }, 1087 },
1088 ], # 'targets' 1088 ], # 'targets'
1089 'includes': [ 1089 'includes': [
1090 'chrome_android.gypi', 1090 'chrome_android.gypi',
1091 ]}, # 'includes' 1091 ]}, # 'includes'
1092 ], # OS=="android" 1092 ], # OS=="android"
1093 ], # 'conditions' 1093 ], # 'conditions'
1094 } 1094 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | chrome/chrome_tests.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698