| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |