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

Side by Side Diff: build/common.gypi

Issue 1558043: POSIX: Implement the fastbuild option.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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': { 9 'variables': {
10 # .gyp files or targets should set chromium_code to 1 if they build 10 # .gyp files or targets should set chromium_code to 1 if they build
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 # Finally, for Windows, we simply turn on profiling. 372 # Finally, for Windows, we simply turn on profiling.
373 ['OS=="win"', { 373 ['OS=="win"', {
374 'msvs_settings': { 374 'msvs_settings': {
375 'VCLinkerTool': { 375 'VCLinkerTool': {
376 'GenerateDebugInformation': 'false', 376 'GenerateDebugInformation': 'false',
377 }, 377 },
378 'VCCLCompilerTool': { 378 'VCCLCompilerTool': {
379 'DebugInformationFormat': '0', 379 'DebugInformationFormat': '0',
380 } 380 }
381 } 381 }
382 }], # OS==win 382 }, { # else: OS != "win"
383 'cflags': [ '-g1' ],
384 }],
383 ], # conditions for fastbuild. 385 ], # conditions for fastbuild.
384 }], # fastbuild!=0 386 }], # fastbuild!=0
385 ['selinux==1', { 387 ['selinux==1', {
386 'defines': ['CHROMIUM_SELINUX=1'], 388 'defines': ['CHROMIUM_SELINUX=1'],
387 }], 389 }],
388 ['win_use_allocator_shim==0', { 390 ['win_use_allocator_shim==0', {
389 'conditions': [ 391 'conditions': [
390 ['OS=="win"', { 392 ['OS=="win"', {
391 'defines': ['NO_TCMALLOC'], 393 'defines': ['NO_TCMALLOC'],
392 }], 394 }],
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 # and therefore SYMROOT, needs to be set at the project level. 1257 # and therefore SYMROOT, needs to be set at the project level.
1256 'SYMROOT': '<(DEPTH)/xcodebuild', 1258 'SYMROOT': '<(DEPTH)/xcodebuild',
1257 }, 1259 },
1258 } 1260 }
1259 1261
1260 # Local Variables: 1262 # Local Variables:
1261 # tab-width:2 1263 # tab-width:2
1262 # indent-tabs-mode:nil 1264 # indent-tabs-mode:nil
1263 # End: 1265 # End:
1264 # vim: set expandtab tabstop=2 shiftwidth=2: 1266 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698