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

Side by Side Diff: trunk/src/build/common.gypi

Issue 140783009: Revert 245464 "Use an alternate mechanism for CreateFile calls i..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 | trunk/src/chrome/chrome_dll.gypi » ('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 # 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 2460 matching lines...) Expand 10 before | Expand all | Expand 10 after
2471 }], 2471 }],
2472 ['enable_mdns==1', { 2472 ['enable_mdns==1', {
2473 'defines': ['ENABLE_MDNS=1'], 2473 'defines': ['ENABLE_MDNS=1'],
2474 }], 2474 }],
2475 ['enable_enhanced_bookmarks==1', { 2475 ['enable_enhanced_bookmarks==1', {
2476 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], 2476 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'],
2477 }], 2477 }],
2478 ['enable_ipc_fuzzer==1', { 2478 ['enable_ipc_fuzzer==1', {
2479 'defines': ['ENABLE_IPC_FUZZER=1'], 2479 'defines': ['ENABLE_IPC_FUZZER=1'],
2480 }], 2480 }],
2481 ['OS=="win" and component=="shared_library"', {
2482 'dependencies': [
2483 # All targets in a component build must depend on chrome_redirects,
2484 # to ensure that certain calls go through it.
2485 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_redirects',
2486 ],
2487 }],
2488 ], # conditions for 'target_defaults' 2481 ], # conditions for 'target_defaults'
2489 'target_conditions': [ 2482 'target_conditions': [
2490 ['enable_wexit_time_destructors==1', { 2483 ['enable_wexit_time_destructors==1', {
2491 'conditions': [ 2484 'conditions': [
2492 [ 'clang==1', { 2485 [ 'clang==1', {
2493 'cflags': [ 2486 'cflags': [
2494 '-Wexit-time-destructors', 2487 '-Wexit-time-destructors',
2495 ], 2488 ],
2496 'xcode_settings': { 2489 'xcode_settings': {
2497 'WARNING_CFLAGS': [ 2490 'WARNING_CFLAGS': [
(...skipping 2340 matching lines...) Expand 10 before | Expand all | Expand 10 after
4838 # settings in target dicts. SYMROOT is a special case, because many other 4831 # settings in target dicts. SYMROOT is a special case, because many other
4839 # Xcode variables depend on it, including variables such as 4832 # Xcode variables depend on it, including variables such as
4840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4842 # files to appear (when present) in the UI as actual files and not red 4835 # files to appear (when present) in the UI as actual files and not red
4843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4844 # and therefore SYMROOT, needs to be set at the project level. 4837 # and therefore SYMROOT, needs to be set at the project level.
4845 'SYMROOT': '<(DEPTH)/xcodebuild', 4838 'SYMROOT': '<(DEPTH)/xcodebuild',
4846 }, 4839 },
4847 } 4840 }
OLDNEW
« no previous file with comments | « no previous file | trunk/src/chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698