OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 | 430 |
431 # If debug_devtools is set to 1, JavaScript files for DevTools are | 431 # If debug_devtools is set to 1, JavaScript files for DevTools are |
432 # stored as is and loaded from disk. Otherwise, a concatenated file | 432 # stored as is and loaded from disk. Otherwise, a concatenated file |
433 # is stored in resources.pak. It is still possible to load JS files | 433 # is stored in resources.pak. It is still possible to load JS files |
434 # from disk by passing --debug-devtools cmdline switch. | 434 # from disk by passing --debug-devtools cmdline switch. |
435 'debug_devtools%': 0, | 435 'debug_devtools%': 0, |
436 | 436 |
437 # Point to ICU directory. | 437 # Point to ICU directory. |
438 'icu_src_dir': '../third_party/icu', | 438 'icu_src_dir': '../third_party/icu', |
439 | 439 |
| 440 # Enable desktop notifications. |
| 441 'enable_desktop_notifications%': 1, |
| 442 |
440 'conditions': [ | 443 'conditions': [ |
441 ['os_posix==1 and OS!="mac"', { | 444 ['os_posix==1 and OS!="mac"', { |
442 # This will set gcc_version to XY if you are running gcc X.Y.*. | 445 # This will set gcc_version to XY if you are running gcc X.Y.*. |
443 # This is used to tweak build flags for gcc 4.4. | 446 # This is used to tweak build flags for gcc 4.4. |
444 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 447 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
445 # Figure out the python architecture to decide if we build pyauto. | 448 # Figure out the python architecture to decide if we build pyauto. |
446 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 449 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
447 'conditions': [ | 450 'conditions': [ |
448 ['branding=="Chrome"', { | 451 ['branding=="Chrome"', { |
449 'linux_breakpad%': 1, | 452 'linux_breakpad%': 1, |
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1755 # and therefore SYMROOT, needs to be set at the project level. | 1758 # and therefore SYMROOT, needs to be set at the project level. |
1756 'SYMROOT': '<(DEPTH)/xcodebuild', | 1759 'SYMROOT': '<(DEPTH)/xcodebuild', |
1757 }, | 1760 }, |
1758 } | 1761 } |
1759 | 1762 |
1760 # Local Variables: | 1763 # Local Variables: |
1761 # tab-width:2 | 1764 # tab-width:2 |
1762 # indent-tabs-mode:nil | 1765 # indent-tabs-mode:nil |
1763 # End: | 1766 # End: |
1764 # vim: set expandtab tabstop=2 shiftwidth=2: | 1767 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |