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: build/common.gypi

Issue 154463002: Hook up redirects for component builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome_elf/chrome_elf.gyp » ('j') | chrome_elf/chrome_elf.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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 2436 matching lines...) Expand 10 before | Expand all | Expand 10 after
2447 }], 2447 }],
2448 ['enable_mdns==1', { 2448 ['enable_mdns==1', {
2449 'defines': ['ENABLE_MDNS=1'], 2449 'defines': ['ENABLE_MDNS=1'],
2450 }], 2450 }],
2451 ['enable_enhanced_bookmarks==1', { 2451 ['enable_enhanced_bookmarks==1', {
2452 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], 2452 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'],
2453 }], 2453 }],
2454 ['enable_ipc_fuzzer==1', { 2454 ['enable_ipc_fuzzer==1', {
2455 'defines': ['ENABLE_IPC_FUZZER=1'], 2455 'defines': ['ENABLE_IPC_FUZZER=1'],
2456 }], 2456 }],
2457 ['OS=="win" and component=="shared_library"', {
2458 'dependencies': [
2459 # All targets in a component build must depend on chrome_redirects,
2460 # to ensure that certain calls go through it.
2461 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_redirects',
2462 ],
2463 }],
2457 ], # conditions for 'target_defaults' 2464 ], # conditions for 'target_defaults'
2458 'target_conditions': [ 2465 'target_conditions': [
2459 ['enable_wexit_time_destructors==1', { 2466 ['enable_wexit_time_destructors==1', {
2460 'conditions': [ 2467 'conditions': [
2461 [ 'clang==1', { 2468 [ 'clang==1', {
2462 'cflags': [ 2469 'cflags': [
2463 '-Wexit-time-destructors', 2470 '-Wexit-time-destructors',
2464 ], 2471 ],
2465 'xcode_settings': { 2472 'xcode_settings': {
2466 'WARNING_CFLAGS': [ 2473 'WARNING_CFLAGS': [
(...skipping 2413 matching lines...) Expand 10 before | Expand all | Expand 10 after
4880 # settings in target dicts. SYMROOT is a special case, because many other 4887 # settings in target dicts. SYMROOT is a special case, because many other
4881 # Xcode variables depend on it, including variables such as 4888 # Xcode variables depend on it, including variables such as
4882 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4889 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4883 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4890 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4884 # files to appear (when present) in the UI as actual files and not red 4891 # files to appear (when present) in the UI as actual files and not red
4885 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4892 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4886 # and therefore SYMROOT, needs to be set at the project level. 4893 # and therefore SYMROOT, needs to be set at the project level.
4887 'SYMROOT': '<(DEPTH)/xcodebuild', 4894 'SYMROOT': '<(DEPTH)/xcodebuild',
4888 }, 4895 },
4889 } 4896 }
OLDNEW
« no previous file with comments | « no previous file | chrome_elf/chrome_elf.gyp » ('j') | chrome_elf/chrome_elf.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698