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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 # This is used to tweak build flags for gcc 4.4. | 297 # This is used to tweak build flags for gcc 4.4. |
298 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 298 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
299 # Figure out the python architecture to decide if we build pyauto. | 299 # Figure out the python architecture to decide if we build pyauto. |
300 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 300 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
301 'conditions': [ | 301 'conditions': [ |
302 ['branding=="Chrome"', { | 302 ['branding=="Chrome"', { |
303 'linux_breakpad%': 1, | 303 'linux_breakpad%': 1, |
304 }], | 304 }], |
305 # All Chrome builds have breakpad symbols, but only process the | 305 # All Chrome builds have breakpad symbols, but only process the |
306 # symbols from official builds. | 306 # symbols from official builds. |
307 # TODO(mmoss) dump_syms segfaults on x64. Enable once dump_syms and | 307 ['(branding=="Chrome" and buildtype=="Official")', { |
308 # crash server handle 64-bit symbols. | |
309 ['(branding=="Chrome" and buildtype=="Official" and ' | |
310 'target_arch=="ia32")', { | |
311 'linux_dump_symbols%': 1, | 308 'linux_dump_symbols%': 1, |
312 }], | 309 }], |
313 ['toolkit_views==0', { | 310 ['toolkit_views==0', { |
314 # GTK wants Title Case strings | 311 # GTK wants Title Case strings |
315 'use_titlecase_in_grd_files%': 1, | 312 'use_titlecase_in_grd_files%': 1, |
316 }], | 313 }], |
317 ], | 314 ], |
318 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" | 315 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" |
319 ['OS=="mac"', { | 316 ['OS=="mac"', { |
320 # Mac wants Title Case strings | 317 # Mac wants Title Case strings |
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 # and therefore SYMROOT, needs to be set at the project level. | 1440 # and therefore SYMROOT, needs to be set at the project level. |
1444 'SYMROOT': '<(DEPTH)/xcodebuild', | 1441 'SYMROOT': '<(DEPTH)/xcodebuild', |
1445 }, | 1442 }, |
1446 } | 1443 } |
1447 | 1444 |
1448 # Local Variables: | 1445 # Local Variables: |
1449 # tab-width:2 | 1446 # tab-width:2 |
1450 # indent-tabs-mode:nil | 1447 # indent-tabs-mode:nil |
1451 # End: | 1448 # End: |
1452 # vim: set expandtab tabstop=2 shiftwidth=2: | 1449 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |