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

Side by Side Diff: build/common.gypi

Issue 7053041: Add a Create method to DesktopNotificationHandler and stubs for the notification objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 6 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
OLDNEW
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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 426
427 # If debug_devtools is set to 1, JavaScript files for DevTools are 427 # If debug_devtools is set to 1, JavaScript files for DevTools are
428 # stored as is and loaded from disk. Otherwise, a concatenated file 428 # stored as is and loaded from disk. Otherwise, a concatenated file
429 # is stored in resources.pak. It is still possible to load JS files 429 # is stored in resources.pak. It is still possible to load JS files
430 # from disk by passing --debug-devtools cmdline switch. 430 # from disk by passing --debug-devtools cmdline switch.
431 'debug_devtools%': 0, 431 'debug_devtools%': 0,
432 432
433 # Point to ICU directory. 433 # Point to ICU directory.
434 'icu_src_dir': '../third_party/icu', 434 'icu_src_dir': '../third_party/icu',
435 435
436 # Enable desktop notifications.
437 'enable_desktop_notifications%': 0,
Torne 2011/06/02 16:18:35 I assume you have this set to 0 just for trybots a
438
436 'conditions': [ 439 'conditions': [
437 ['os_posix==1 and OS!="mac"', { 440 ['os_posix==1 and OS!="mac"', {
438 # This will set gcc_version to XY if you are running gcc X.Y.*. 441 # This will set gcc_version to XY if you are running gcc X.Y.*.
439 # This is used to tweak build flags for gcc 4.4. 442 # This is used to tweak build flags for gcc 4.4.
440 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 443 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
441 # Figure out the python architecture to decide if we build pyauto. 444 # Figure out the python architecture to decide if we build pyauto.
442 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)', 445 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)',
443 'conditions': [ 446 'conditions': [
444 ['branding=="Chrome"', { 447 ['branding=="Chrome"', {
445 'linux_breakpad%': 1, 448 'linux_breakpad%': 1,
(...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 # and therefore SYMROOT, needs to be set at the project level. 1750 # and therefore SYMROOT, needs to be set at the project level.
1748 'SYMROOT': '<(DEPTH)/xcodebuild', 1751 'SYMROOT': '<(DEPTH)/xcodebuild',
1749 }, 1752 },
1750 } 1753 }
1751 1754
1752 # Local Variables: 1755 # Local Variables:
1753 # tab-width:2 1756 # tab-width:2
1754 # indent-tabs-mode:nil 1757 # indent-tabs-mode:nil
1755 # End: 1758 # End:
1756 # vim: set expandtab tabstop=2 shiftwidth=2: 1759 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/background_contents_service.cc » ('j') | chrome/browser/desktop_notification_handler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698